blob: 670488c1b079cd7c120993609a91433469dfbfaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DSACore.Models.Database
{
public class CharSpell
{
public CharSpell(string representation, int value)
{
this.representation = representation ?? throw new ArgumentNullException(nameof(representation));
this.value = value;
}
public string representation { get; set; }
public int value { get; set; }
}
}
|