16 lines
337 B
C#
16 lines
337 B
C#
using System.Security.Claims;
|
|
|
|
namespace AuthenticationService.Models
|
|
{
|
|
public interface IAuthContainerModel
|
|
{
|
|
#region Members
|
|
string SecretKey { get; set; }
|
|
string SecurityAlgorithm { get; set; }
|
|
int ExpireMinutes { get; set; }
|
|
|
|
Claim[] Claims { get; set; }
|
|
#endregion
|
|
}
|
|
}
|