update v0.0.2 twa sys

This commit is contained in:
2025-11-18 11:48:01 +07:00
parent b4b191f829
commit a586da6edc
40 changed files with 1347 additions and 937 deletions

View File

@ -17,5 +17,8 @@ namespace TWASys_App.DBModels
[NotMapped()]
public ICollection<ServerAuthorization_has_Token> Tokens { get; set; } = new List<ServerAuthorization_has_Token>();
[NotMapped()]
public ICollection<RefreshToken> RefreshTokens { get; set; } = new List<RefreshToken>();
}
}

View File

@ -17,9 +17,12 @@ namespace TWASys_App.DBModels
public DateTime? CreateDate { get; set; }
public int? Size { get; set; } = null;
public string ControllerID { get; set; } = "";
public int Status { get; set; } = 0;
[NotMapped]
public TypeStorageServer TypeStorageServer { set; get; } = null!;
}
}