11 lines
202 B
C#
11 lines
202 B
C#
namespace WatchIt.WebAPI.Services.Tokens.Configuration;
|
|
|
|
public class TokenLifetime
|
|
{
|
|
#region PROPERTIES
|
|
|
|
public int Normal { get; set; }
|
|
public int? Extended { get; set; }
|
|
|
|
#endregion
|
|
} |