summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GroupChar.cs
blob: 0c1ecf14952fb48608996b87e612a431f918e6af (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; }
    }
}