summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GroupChar.cs
blob: a0115cdf8a60ab533d58950f6fdf996faae73dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace DSALib.Models.Database.Dsa
{
    public class GroupChar
    {
        public string Name { get; set; }
        public int Id { get; set; }
        public int Lp { get; set; }
        public int LpMax { get; set; }
        public int As { get; set; }
        public int AsMax { get; set; }
        public Weapon Weapon { get; set; }
    }
}