using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FabitArchiwum.Test.Model { internal class TokenModel { public string token { get; set; } public string refreshToken { get; set; } public DateTime expiration { get; set; } } }