8 lines
No EOL
182 B
C#
8 lines
No EOL
182 B
C#
namespace Femto.Api.Auth;
|
|
|
|
public class CookieSettings
|
|
{
|
|
public SameSiteMode SameSite { get; set; }
|
|
public bool Secure { get; set; }
|
|
public string? Domain { get; set; }
|
|
} |