summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/CharSpell.cs
blob: 77a8dc8597786f02a39a8bf8fe75289c53b80131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace DSALib.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; }
    }
}