mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
13 lines
320 B
C#
13 lines
320 B
C#
namespace API.Entities;
|
|
|
|
public class AppUserExternalSource
|
|
{
|
|
public int Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public required string Host { get; set; }
|
|
public required string ApiKey { get; set; }
|
|
|
|
public int AppUserId { get; set; }
|
|
public AppUser AppUser { get; set; }
|
|
}
|