Files

14 lines
315 B
C#
Raw Permalink Normal View History

namespace Aaru.Server.Database.Models;
2021-12-08 17:57:50 +00:00
public class ChsModel
2019-11-10 13:25:20 +00:00
{
2021-12-08 17:57:50 +00:00
public ushort Cylinders { get; set; }
public ushort Heads { get; set; }
public ushort Sectors { get; set; }
}
2019-11-10 13:25:20 +00:00
2021-12-08 17:57:50 +00:00
public class ChsModelForView
{
public List<ChsModel> List { get; set; }
public string Json { get; set; }
2019-11-10 13:25:20 +00:00
}