Add consolidation of CHS entities.

This commit is contained in:
2019-11-10 13:25:20 +00:00
parent 3e12a41a5f
commit 3fcfced918
4 changed files with 120 additions and 2 deletions

View 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; }
}
}