[REWORK] Changes saving client and channel info
This commit is contained in:
@@ -18,7 +18,7 @@ public sealed class LibraryDbContext : DbContext
|
||||
|
||||
public DbSet<CaptionEntity> Captions { get; set; }
|
||||
public DbSet<ChannelEntity> Channels { get; set; }
|
||||
public DbSet<ClientAccountEntity> Accounts { get; set; }
|
||||
public DbSet<ClientAccountEntity> ClientAccounts { get; set; }
|
||||
public DbSet<HttpCookieEntity> HttpCookies { get; set; }
|
||||
public DbSet<MediaEntity> Media { get; set; }
|
||||
public DbSet<MediaFormatEntity> MediaFormats { get; set; }
|
||||
|
@@ -16,7 +16,7 @@ public class HttpCookieEntity : DateTimeBase
|
||||
public string? Domain { get; set; }
|
||||
[MaxLength(DataConstants.DbContext.DefaultDbStringSize)]
|
||||
public string? Path { get; set; }
|
||||
public DateTimeOffset? ExpiresUtc { get; set; }
|
||||
public DateTime? ExpiresUtc { get; set; }
|
||||
public bool Secure { get; set; }
|
||||
public bool HttpOnly { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user