11 lines
305 B
C#
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; } = [];
|
|
}
|