summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GroupChar.cs
blob: 1dfc4eae676e01097afa2fa3169059892c830b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models.Database
{
    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; }
    }
}