summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/DSA/CharSpell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/DSA/CharSpell.cs')
-rw-r--r--DSACore/Models/Database/DSA/CharSpell.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/DSACore/Models/Database/DSA/CharSpell.cs b/DSACore/Models/Database/DSA/CharSpell.cs
deleted file mode 100644
index fabd456..0000000
--- a/DSACore/Models/Database/DSA/CharSpell.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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; }
- }
-} \ No newline at end of file