femto-backend/Femto.Api/Auth/CookieSettings.cs
2025-05-26 22:06:49 +02:00

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; }
}