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

namespace DSACore.Models.Database
{
    public class Weapon
    {
        public string Name { get; set; }
        public string Damage { get; set; }
        public string WeaponTalent { get; set; }
        public string Modifier { get; set; }
    }
}