basic manager layout & re-design model

This commit is contained in:
2024-05-17 20:12:08 +02:00
parent 5055540f76
commit dab404d95e
10 changed files with 257 additions and 23 deletions

View File

@@ -1,8 +1,11 @@
namespace OwnChar.Model
{
public class Character
public class Character(Group group, string name)
{
public ulong Id { get; set; }
public PropertyList Properties { get; set; } = [];
public string Name { get; set; } = name;
public Group Group { get; set; } = group;
public List<Property> Properties { get; set; } = [];
public List<PropertyCategory> PropertyCategories { get; set; } = [];
}
}