using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WalkingTec.Mvvm.Core
{
///
/// PersistedGrant
///
[Table("PersistedGrants")]
public class PersistedGrant : TopBasePoco
{
[StringLength(50)]
public string Type { get; set; }
public string UserCode { get; set; }
///
/// 创建时间
///
/// The creation time.
public DateTime CreationTime { get; set; } = DateTime.Now;
///
/// 到期时间
///
/// The expiration.
public DateTime Expiration { get; set; }
[StringLength(50)]
public string RefreshToken { get; set; }
}
}