mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add consolidation of CHS entities.
This commit is contained in:
17
DiscImageChef.Server/Models/ChsModel.cs
Normal file
17
DiscImageChef.Server/Models/ChsModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DiscImageChef.Server.Models
|
||||
{
|
||||
public class ChsModel
|
||||
{
|
||||
public ushort Cylinders { get; set; }
|
||||
public ushort Heads { get; set; }
|
||||
public ushort Sectors { get; set; }
|
||||
}
|
||||
|
||||
public class ChsModelForView
|
||||
{
|
||||
public List<ChsModel> List { get; set; }
|
||||
public string Json { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user