1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
namespace DiscoBot.Auxiliary { 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; } } }