summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/GroupChar.cs
blob: 31fc5839e7ab0574a927cbdffadfde21dabb56a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace DSACore.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; }
    }
}