diff options
Diffstat (limited to 'DSACore/Models/Database/Char.cs')
-rw-r--r-- | DSACore/Models/Database/Char.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/DSACore/Models/Database/Char.cs b/DSACore/Models/Database/Char.cs deleted file mode 100644 index 04c16f0..0000000 --- a/DSACore/Models/Database/Char.cs +++ /dev/null @@ -1,27 +0,0 @@ -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>(); - - } -} |