mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-01 18:16:08 +00:00
16 lines
478 B
C#
16 lines
478 B
C#
namespace M6502.Symbols
|
|
{
|
|
// file id=0,name="sudoku.s",size=9141,mtime=0x6027C7F0,mod=0
|
|
[Section("file", "Files")]
|
|
public sealed class File(Parser container) : NamedSection(container)
|
|
{
|
|
[SectionProperty("size")]
|
|
public int Size { get; private set; }
|
|
|
|
[SectionProperty("mtime")]
|
|
public DateTime ModificationTime { get; private set; }
|
|
|
|
[SectionReference("mod")]
|
|
public Module? Module { get; private set; }
|
|
}
|
|
} |