aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Models/Http/HttpVerifyTokenResponseV2.cs
blob: c91771cf3168f55d6c8dd9b62dba7a829f84b296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Timeline.Models.Http
{

    public class HttpVerifyTokenResponseV2
    {
        /// <summary>
        /// The user owning the token.
        /// </summary>
        public HttpUser User { get; set; } = default!;

        public DateTime? ExpireAt { get; set; }
    }
}