summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/KampfTalent.cs
blob: 05b7c9e5d0c26c2796bd1946462fc581a26fa21c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace DiscoBot.Auxiliary
{
    public class KampfTalent
    {
        public KampfTalent(string name, int at, int pa)
        {
            this.Name = name;
            this.At = at;
            this.Pa = pa;
        }

        public string Name { get; set; }

        public int At { get; set; }

        public int Pa { get; set; }
    }
}