update TWA Management v0.0.1
This commit is contained in:
16
TWASys-App/DBModels/Folders_has_StorageArea.cs
Normal file
16
TWASys-App/DBModels/Folders_has_StorageArea.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace TWASys_App.DBModels
|
||||
{
|
||||
public class Folders_has_StorageArea
|
||||
{
|
||||
[ForeignKey("")]
|
||||
public ulong IdFolders { get; set; }
|
||||
|
||||
[ForeignKey("")]
|
||||
public long IdStorage { get; set; }
|
||||
|
||||
public Folder Folder { get; set; } = null!;
|
||||
public StorageArea Storage { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user