Files
Library/OwnChar/Data/Providers/JsonFile/Model/JsonCharacter.cs
2024-06-11 06:59:34 +02:00

11 lines
305 B
C#

using OwnChar.Model;
namespace OwnChar.Data.Providers.JsonFile.Model;
public class JsonCharacter : Character
{
public virtual JsonUserProfile? Owner { get; set; }
public virtual List<JsonProp> Properties { get; } = [];
public virtual List<JsonPropCat> PropertyCategories { get; } = [];
}