Add consolidation for SSCs.

This commit is contained in:
2019-11-17 20:46:37 +00:00
parent d134d54225
commit 53b8163a43
5 changed files with 136 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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; }
}
}