Files
2024-04-27 22:36:16 +02:00

7 lines
179 B
C#

namespace WatchIt.WebAPI.Services.Utility.Configuration.Model;
public class Token
{
public int NormalLifetime { get; set; }
public int ExtendedLifetime { get; set; }
}