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