summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Char.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/Char.cs')
-rw-r--r--DSACore/Models/Database/Char.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/DSACore/Models/Database/Char.cs b/DSACore/Models/Database/Char.cs
new file mode 100644
index 0000000..f77c760
--- /dev/null
+++ b/DSACore/Models/Database/Char.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Database
+{
+ public class Char
+ {
+ private string Name { get; set; }
+ private int Id { get; set; }
+ private int Lp { get; set; }
+ private int LpMax { get; set; }
+ private int As { get; set; }
+ private int AsMax { get; set; }
+ private Weapon Weapon { get; set; }
+ }
+}