update TWA Management v0.0.1
This commit is contained in:
15
TWASys-App/DBModels/Token.cs
Normal file
15
TWASys-App/DBModels/Token.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
{
|
||||
public class Token
|
||||
{
|
||||
[Key]
|
||||
public string IdToken { get; set; } = "";
|
||||
public string AccessToken { get; set; } = "";
|
||||
public DateTime CreateDate { get; set; }
|
||||
public DateTime ExpireDate { get; set; }
|
||||
public int Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user