[ADD] New entities for library db
This commit is contained in:
15
Manager.Data/Models/LibraryContext/HttpCookieEntity.cs
Normal file
15
Manager.Data/Models/LibraryContext/HttpCookieEntity.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Manager.Data.Models.LibraryContext;
|
||||
|
||||
public class HttpCookieEntity : DateTimeBase
|
||||
{
|
||||
public required string Name { get; set; }
|
||||
public string? Value { get; set; }
|
||||
public string? Domain { get; set; }
|
||||
public string? Path { get; set; }
|
||||
public DateTimeOffset? ExpiresUtc { get; set; }
|
||||
public bool Secure { get; set; }
|
||||
public bool HttpOnly { get; set; }
|
||||
public string? SameSite { get; set; }
|
||||
|
||||
public required string ClientId { get; set; }
|
||||
}
|
Reference in New Issue
Block a user