summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/Vorteil.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Auxiliary/Vorteil.cs')
-rw-r--r--DiscoBot/Auxiliary/Vorteil.cs7
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; }
}
}