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