From 2503ca78d3e583cb1291cb9a99a6e79526a348ee Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Mon, 9 Jul 2018 15:15:35 +0200 Subject: Created DSALib Created ZooBOTanica --- DSALib/Vorteil.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 DSALib/Vorteil.cs (limited to 'DSALib/Vorteil.cs') diff --git a/DSALib/Vorteil.cs b/DSALib/Vorteil.cs new file mode 100644 index 0000000..493c4d1 --- /dev/null +++ b/DSALib/Vorteil.cs @@ -0,0 +1,18 @@ +namespace DiscoBot.DSA_Game +{ + public class Vorteil // talent objekt + { + public Vorteil(string name, string value = "") + { + this.Name = name; + this.Value = value; + // this.Choice = choice; + } + + public string Name { get; set; } + + public string Value { get; set; } + + //public string Choice { get; set; } + } +} -- cgit v1.2.3-54-g00ecf