Add logical partitions by media.

This commit is contained in:
2020-06-11 01:55:48 +01:00
parent 7a258246bf
commit e31a8c4480
8 changed files with 5015 additions and 1 deletions

View File

@@ -24,6 +24,7 @@
*******************************************************************************/
using System;
using System.Collections.Generic;
using Aaru.CommonTypes;
namespace Marechai.Database.Models
@@ -54,5 +55,7 @@ namespace Marechai.Database.Models
public int? LogicalBlockSize { get; set; }
public JsonObject<VariableBlockSize[]> BlockSizes { get; set; }
public StorageInterface? StorageInterface { get; set; }
public virtual ICollection<LogicalPartitionsByMedia> LogicalPartitions { get; set; }
}
}