mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-12 04:52:54 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
13 lines
335 B
C#
13 lines
335 B
C#
namespace Kavita.Models.Entities.User;
|
|
|
|
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; }
|
|
}
|