mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
14 lines
315 B
C#
14 lines
315 B
C#
namespace Aaru.Server.Database.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; }
|
|
} |