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