summaryrefslogtreecommitdiff
path: root/DSALib/Vorteil.cs
blob: 493c4d19d20b116f61a8342091b1817164a48d0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
    }
}