mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
17 lines
426 B
C#
17 lines
426 B
C#
|
|
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<SscModel> List { get; set; }
|
||
|
|
public string Json { get; set; }
|
||
|
|
}
|
||
|
|
}
|