summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Database/Dsa/GroupChar.cs
blob: 446bfcc540d71fab25423f68e21a96c02262c0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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; }
    }
}