mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add coverdiscs.
This commit is contained in:
@@ -31,31 +31,32 @@ namespace Marechai.Database.Models
|
||||
{
|
||||
public class Media : BaseModel<ulong>
|
||||
{
|
||||
public string Title { get; set; }
|
||||
public ushort? Sequence { get; set; }
|
||||
public ushort? LastSequence { get; set; }
|
||||
public MediaType Type { get; set; }
|
||||
public int? WriteOffset { get; set; }
|
||||
public ushort? Sides { get; set; }
|
||||
public ushort? Layers { get; set; }
|
||||
public ushort? Sessions { get; set; }
|
||||
public ushort? Tracks { get; set; }
|
||||
public ulong Sectors { get; set; }
|
||||
public ulong Size { get; set; }
|
||||
public string CopyProtection { get; set; }
|
||||
public string PartNumber { get; set; }
|
||||
public string SerialNumber { get; set; }
|
||||
public string Barcode { get; set; }
|
||||
public string CatalogueNumber { get; set; }
|
||||
public string Manufacturer { get; set; }
|
||||
public string Model { get; set; }
|
||||
public string Revision { get; set; }
|
||||
public string Firmware { get; set; }
|
||||
public int? PhysicalBlockSize { get; set; }
|
||||
public int? LogicalBlockSize { get; set; }
|
||||
public JsonObject<VariableBlockSize[]> BlockSizes { get; set; }
|
||||
public StorageInterface? StorageInterface { get; set; }
|
||||
public JsonObject<OpticalDiscTrack[]> TableOfContents { get; set; }
|
||||
public string Title { get; set; }
|
||||
public ushort? Sequence { get; set; }
|
||||
public ushort? LastSequence { get; set; }
|
||||
public MediaType Type { get; set; }
|
||||
public int? WriteOffset { get; set; }
|
||||
public ushort? Sides { get; set; }
|
||||
public ushort? Layers { get; set; }
|
||||
public ushort? Sessions { get; set; }
|
||||
public ushort? Tracks { get; set; }
|
||||
public ulong Sectors { get; set; }
|
||||
public ulong Size { get; set; }
|
||||
public string CopyProtection { get; set; }
|
||||
public string PartNumber { get; set; }
|
||||
public string SerialNumber { get; set; }
|
||||
public string Barcode { get; set; }
|
||||
public string CatalogueNumber { get; set; }
|
||||
public string Manufacturer { get; set; }
|
||||
public string Model { get; set; }
|
||||
public string Revision { get; set; }
|
||||
public string Firmware { get; set; }
|
||||
public int? PhysicalBlockSize { get; set; }
|
||||
public int? LogicalBlockSize { get; set; }
|
||||
public JsonObject<VariableBlockSize[]> BlockSizes { get; set; }
|
||||
public StorageInterface? StorageInterface { get; set; }
|
||||
public JsonObject<OpticalDiscTrack[]> TableOfContents { get; set; }
|
||||
public virtual MagazineIssue MagazineIssue { get; set; }
|
||||
|
||||
public virtual ICollection<LogicalPartitionsByMedia> LogicalPartitions { get; set; }
|
||||
public virtual ICollection<MediaDump> MediaDumps { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user