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