summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/CharSpell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/CharSpell.cs')
-rw-r--r--DSACore/Models/Database/CharSpell.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/DSACore/Models/Database/CharSpell.cs b/DSACore/Models/Database/CharSpell.cs
index cdb5447..670488c 100644
--- a/DSACore/Models/Database/CharSpell.cs
+++ b/DSACore/Models/Database/CharSpell.cs
@@ -7,7 +7,13 @@ namespace DSACore.Models.Database
{
public class CharSpell
{
- private string representation { get; set; }
- private int value { get; set; }
+ 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; }
}
}