Files
Aaru.Server/DiscImageChef.Server/Models/ChsModel.cs

17 lines
396 B
C#
Raw Normal View History

2019-11-10 13:25:20 +00:00
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; }
}
}