summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Dsa/Vorteil.cs
blob: c07d6f8f5c6d27a40cf313877837363f05ea3b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using DSALib.Models.Database;

namespace DSALib.Models.Dsa {
    public class Vorteil : 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; }
    }
}