v0.0.3 twa sys
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class Files
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class Folder
|
||||
{
|
||||
@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class Folders_has_StorageArea
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class LocalServer
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class MicrosoftAccount
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class RefreshToken
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class RefreshToken_Log
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class ServerAuthorization
|
||||
{
|
||||
@ -12,11 +12,11 @@ namespace TWASys_App.DBModels
|
||||
[ForeignKey("IdStorageServer")]
|
||||
public long IdStorageServer { get; set; }
|
||||
public DateTime CreateDate { get; set; }
|
||||
public int Count { get; set; }
|
||||
public int Count { get; set; }
|
||||
public int Status { get; set; }
|
||||
|
||||
[NotMapped()]
|
||||
public ICollection<ServerAuthorization_has_Token> Tokens { get; set; } = new List<ServerAuthorization_has_Token>();
|
||||
public ICollection<Token> Tokens { get; set; } = new List<Token>();
|
||||
|
||||
[NotMapped()]
|
||||
public ICollection<RefreshToken> RefreshTokens { get; set; } = new List<RefreshToken>();
|
||||
@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class ServerAuthorization_has_Token
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageArea
|
||||
{
|
||||
@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageArea_has_StorageServer
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageServer
|
||||
{
|
||||
@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageServer_has_LocalServer
|
||||
{
|
||||
@ -1,6 +1,6 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageServer_has_MicrosoftAccount
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class StorageServers_ValidationDomain
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class SyncFile_Log
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class Token
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class TypeStorageServer
|
||||
{
|
||||
@ -1,7 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
namespace TWASys_App.DBModels.SotrageModel
|
||||
{
|
||||
public class ValidationDomain
|
||||
{
|
||||
Reference in New Issue
Block a user