aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Web/Security/RefreshTokenEntity.cs
blob: 839027ca140e0a4c4330b5209ac9f0509d06ddfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Web.Security
{
    public class RefreshTokenEntity : TableEntity
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="RefreshTokenEntity"/> class.
        /// </summary>
        public RefreshTokenEntity()
        {

        }

        public String RefreshToken { get; set; }
        public String AccessToken { get; set; }
        public DateTime Expiration { get; set; }
    }
}