FabitArchiwum/FabitArchiwum.Test/Model/TokenModel.cs
Krzysztof Famulski 58f5e326e0 Add project files.
2024-11-02 15:32:42 +01:00

17 lines
342 B
C#

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