blob: fabd456225963dfa0c48c2e6b37b95f3fd080d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
namespace DSACore.Models.Database.DSA
{
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; }
}
}
|