summaryrefslogtreecommitdiff
path: root/DTOs/AuthenticationToken.cs
blob: 9014027ce25e1bfaf9c3978743bd6c9dfb11056e (plain)
1
2
3
4
5
6
namespace LibraryAPI.DTOs {
    public class AuthenticationToken {
        public string? Token { get; set; }
        public DateTime Expiration { get; set; }
    }
}