summaryrefslogtreecommitdiff
path: root/DSALib/Models/Database/DSA/CharSpell.cs
blob: d08bc74e109b5c8bd167c06a904e84215f901da4 (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; }
    }
}