blob: 04c16f08290d501ce9887c0fc5516de8ccc93c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DSACore.Models.Database
{
public class Char
{
private int Id { get; set; }
private string Name { get; set; }
private string Rasse { get; set; }
private List<Field> Skills { get; set; } = new List<Field>();
private List<Field> Talents { get; set; } = new List<Field>();
private List<Field> Advantages { get; set; } = new List<Field>();
private List<CharSpell> Spells { get; set; } = new List<CharSpell>();
private List<WeaponTalent> WeaponTalents { get; set; } = new List<WeaponTalent>();
}
}
|