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

namespace DSACore.Models.Database
{
    public class CharSpell
    {
        private string representation { get; set; }
        private int value { get; set; }
    }
}