Add logical partitions.

This commit is contained in:
2020-06-11 00:48:05 +01:00
parent d8c6591da2
commit 3005ef2281
8 changed files with 4990 additions and 1 deletions

View File

@@ -24,6 +24,7 @@
*******************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Marechai.Database.Models
@@ -49,5 +50,7 @@ namespace Marechai.Database.Models
public string PublisherIdentifier { get; set; }
public string DataPreparerIdentifier { get; set; }
public string ApplicationIdentifier { get; set; }
public virtual ICollection<FilesystemsByLogicalPartition> Partitions { get; set; }
}
}