13 lines
350 B
C#
13 lines
350 B
C#
using SessionZero.SzfLib.Helpers;
|
|
|
|
namespace SessionZero.SzfLib.Objects;
|
|
|
|
[SzfObject("character_template")]
|
|
public class SzfCharacterTemplate : SzfObject, ISzfCharacterTemplate
|
|
{
|
|
public override string SzfType { get; set; } = "character_template";
|
|
public override SzfError Validate()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |