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.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/DSACore/Models/Database/CharSpell.cs b/DSACore/Models/Database/CharSpell.cs
new file mode 100644
index 0000000..cdb5447
--- /dev/null
+++ b/DSACore/Models/Database/CharSpell.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Database
+{
+ public class CharSpell
+ {
+ private string representation { get; set; }
+ private int value { get; set; }
+ }
+}