mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
17 lines
396 B
C#
17 lines
396 B
C#
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; }
|
|
}
|
|
} |