summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Dsa/Vorteil.cs
blob: e37af20d6a477629faaa5eed2f7faf9dd7ab2024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace DSALib.Models.Dsa
{
    public class Vorteil : Database.DataObject // talent objekt
    {
        public Vorteil(string name, string value = "")
        {
            Name = name;
            Value = value;
            // this.Choice = choice;
        }

        public string Value { get; set; }

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