11 lines
372 B
C#
11 lines
372 B
C#
namespace Indotalent.Infrastructure.Authentication.Identity;
|
|
|
|
public class CookieSettings
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string LoginPath { get; set; } = string.Empty;
|
|
public string LogoutPath { get; set; } = string.Empty;
|
|
public string AccessDeniedPath { get; set; } = string.Empty;
|
|
public int ExpireDays { get; set; }
|
|
}
|