8 lines
270 B
C#
8 lines
270 B
C#
namespace SessionZero.SzfLib.Parser;
|
|
|
|
public class SzfSection(string name)
|
|
{
|
|
public string Name { get; set; } = name;
|
|
public Dictionary<string, SzfField> Fields { get; set; } = new();
|
|
public Dictionary<string, SzfSection> Subsections { get; set; } = new();
|
|
} |