summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/Vorteil.cs
blob: 823305c51f24f2d14bfd41abd8df86581fb83c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace DiscoBot.Auxiliary
{
    public class Vorteil // talent objekt
    {
        public Vorteil(string name, int value = 0)
        {
            this.Name = name;
            this.Value = value;
        }

        public string Name { get; set; }

        public int Value { get; set; }
    }
}