summaryrefslogtreecommitdiff
path: root/DSALib/Vorteil.cs
blob: c2396762653f396860cb202bbaadc06f61f71967 (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 = "")
        {
            Name = name;
            Value = value;
            // this.Choice = choice;
        }

        public string Name { get; set; }

        public string Value { get; set; }

        //public string Choice { get; set; }
    }
}