diff options
author | Kobert <Kassian.Kobert@gmail.com> | 2018-04-09 20:44:22 +0200 |
---|---|---|
committer | Kobert <Kassian.Kobert@gmail.com> | 2018-04-09 20:44:22 +0200 |
commit | fcee15963e9e83fe5cae01300f26d9bcf3eb4e6c (patch) | |
tree | 3fe731f17f86b89720fc24c0ac7501df7c0a4231 /DiscoBot/Auxiliary | |
parent | dad67f269ade9578f9bafd50a9bf57ae19b1676e (diff) |
List Eig
Diffstat (limited to 'DiscoBot/Auxiliary')
-rw-r--r-- | DiscoBot/Auxiliary/Vorteil.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/DiscoBot/Auxiliary/Vorteil.cs b/DiscoBot/Auxiliary/Vorteil.cs index 823305c..57f2020 100644 --- a/DiscoBot/Auxiliary/Vorteil.cs +++ b/DiscoBot/Auxiliary/Vorteil.cs @@ -2,14 +2,17 @@ { public class Vorteil // talent objekt { - public Vorteil(string name, int value = 0) + public Vorteil(string name, string value = "") { this.Name = name; this.Value = value; + // this.Choice = choice; } public string Name { get; set; } - public int Value { get; set; } + public string Value { get; set; } + + //public string Choice { get; set; } } } |