aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Stubs
Path not found
using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Tango.MachineService.Security
{
    public class TokenEntity : TableEntity
    {
        public String AccessToken { get; set; }
        public String Identity { get; set; }
        public DateTime Expiration { get; set; }
    }
}