using System; 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; } } }