summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Database/Dsa/CharSpell.cs
blob: 44860049b993d9daf590cb9737e9c4eb15a2de3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
    }
}