From 2ab4051c6fe720dc47e99b0c305a0d779ee02d51 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Sun, 19 May 2019 17:58:42 +0200 Subject: Moved Gamelogic to DSALib --- DSALib/Models/Database/DSA/CharSpell.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 DSALib/Models/Database/DSA/CharSpell.cs (limited to 'DSALib/Models/Database/DSA/CharSpell.cs') diff --git a/DSALib/Models/Database/DSA/CharSpell.cs b/DSALib/Models/Database/DSA/CharSpell.cs new file mode 100644 index 0000000..fabd456 --- /dev/null +++ b/DSALib/Models/Database/DSA/CharSpell.cs @@ -0,0 +1,16 @@ +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 -- cgit v1.2.3-70-g09d2