mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add comments, Listrom and DosCenter models (nw)
This commit is contained in:
18
SabreTools.Models/DosCenter/File.cs
Normal file
18
SabreTools.Models/DosCenter/File.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace SabreTools.Models.DosCenter
|
||||
{
|
||||
/// <remarks>file</remarks>
|
||||
public class File
|
||||
{
|
||||
/// <remarks>name, attribute</remarks>
|
||||
public string? Name { get; set; }
|
||||
|
||||
/// <remarks>size, attribute</remarks>
|
||||
public long? Size { get; set; }
|
||||
|
||||
/// <remarks>crc, attribute</remarks>
|
||||
public string? CRC { get; set; }
|
||||
|
||||
/// <remarks>date, attribute</remarks>
|
||||
public string? Date { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user