Files

14 lines
345 B
C#
Raw Permalink Normal View History

namespace Aaru.Server.Database.Models;
2021-12-08 17:57:50 +00:00
public class SscModel
2019-11-17 20:46:37 +00:00
{
2021-12-08 17:57:50 +00:00
public byte? BlockSizeGranularity { get; set; }
public uint? MaxBlockLength { get; set; }
public uint? MinBlockLength { get; set; }
}
2019-11-17 20:46:37 +00:00
2021-12-08 17:57:50 +00:00
public class SscModelForView
{
public List<SscModel> List { get; set; }
public string Json { get; set; }
2019-11-17 20:46:37 +00:00
}