1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
namespace DiscoBot.Auxiliary { public class Vorteil // talent objekt { public Vorteil(string name, int value = 0) { this.Name = name; this.Value = value; } public string Name { get; set; } public int Value { get; set; } } }