EFB/Models/TokenModel.cs
2021-11-22 13:07:56 +00:00

26 lines
565 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EFB.Models
{
public class TokenModel
{
/*
Auto Router API Token Model
*/
public string TokenValue { get; init; }
public DateTime Expiration { get; init; }
public bool IsExpired(){
//Check if the current time is beyond expiration
if (DateTime.UtcNow > Expiration)
{
return true;
}
return false;
}
}
}