SessionZero.SzfToolkit-Dotnet/SessionZero.SzfLib/Objects/SzfCharacter.cs
christopher.bell@i3-corps.com f00bde7e24 Adding per object validation
2025-07-17 10:14:44 -05:00

13 lines
316 B
C#

using SessionZero.SzfLib.Helpers;
namespace SessionZero.SzfLib.Objects;
[SzfObject("character")]
public class SzfCharacter : SzfObject, ISzfCharacter
{
public override string SzfType { get; set; } = "character";
public override SzfError Validate()
{
throw new NotImplementedException();
}
}