using System.Collections.Generic; namespace DiscImageChef.Server.Models { public class SscModel { public byte? BlockSizeGranularity { get; set; } public uint? MaxBlockLength { get; set; } public uint? MinBlockLength { get; set; } } public class SscModelForView { public List List { get; set; } public string Json { get; set; } } }