summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Talent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/Talent.cs')
-rw-r--r--DSACore/Models/Database/Talent.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/DSACore/Models/Database/Talent.cs b/DSACore/Models/Database/Talent.cs
new file mode 100644
index 0000000..d7bfaae
--- /dev/null
+++ b/DSACore/Models/Database/Talent.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Database
+{
+ public class Talent
+ {
+ private string Name { get; set; }
+
+ private Roll Roll { get; set; } = new Roll();
+ }
+}