namespace SessionZero.SzfLib.Parser; public class SzfField(string name, SzfFieldType type) { public string Name { get; set; } = name; public SzfFieldType SzfType { get; set; } = type; public string? Value { get; set; } public bool Validate() { throw new NotImplementedException(); } }