summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Char.cs
diff options
context:
space:
mode:
authorTrueKuehli <rctcoaster2000@hotmail.de>2018-09-30 16:26:42 +0200
committerTrueKuehli <rctcoaster2000@hotmail.de>2018-09-30 16:26:42 +0200
commitf3de85c77706e33b5072dd4b491ff76fdfebccd6 (patch)
treecc024e9a1b8ea081504fbd183fc48edf0ce3b875 /DSACore/Models/Database/Char.cs
parent3a67ec1e4530f6b413228c2dc19dd90977ac381c (diff)
parent560f454c9beb2f691730b126fc6b3e23d68d6681 (diff)
Merge branch 'WebApi' of https://github.com/TrueDoctor/DiscoBot into WebApi
Diffstat (limited to 'DSACore/Models/Database/Char.cs')
-rw-r--r--DSACore/Models/Database/Char.cs27
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>();
-
- }
-}