mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
16 lines
359 B
C#
16 lines
359 B
C#
|
|
namespace SabreTools.Data.Models.Steam2Installer
|
||
|
|
{
|
||
|
|
public class Steam2InstallerSet
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The sim file
|
||
|
|
/// </summary>
|
||
|
|
public SimFile Sim { get; set; } = new();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The set of sid file volumes
|
||
|
|
/// </summary>
|
||
|
|
// public SidFile[] Sid { get; set; } = [];
|
||
|
|
}
|
||
|
|
}
|