summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GroupChar.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 23:59:42 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 23:59:42 +0200
commit632781d1adf54287ecfe7cbcbc17074e14a769b2 (patch)
treeed8d27601fa4ccfa5552af9ef104d1467a05d8e8 /DSACore/Models/Database/GroupChar.cs
parent33dc613fffad69c1c608e21eac6fcd3f2954ead8 (diff)
added database methods
Diffstat (limited to 'DSACore/Models/Database/GroupChar.cs')
-rw-r--r--DSACore/Models/Database/GroupChar.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/DSACore/Models/Database/GroupChar.cs b/DSACore/Models/Database/GroupChar.cs
index 66e203b..1dfc4ea 100644
--- a/DSACore/Models/Database/GroupChar.cs
+++ b/DSACore/Models/Database/GroupChar.cs
@@ -7,12 +7,12 @@ namespace DSACore.Models.Database
{
public class GroupChar
{
- 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; }
+ public string Name { get; set; }
+ public int Id { get; set; }
+ public int Lp { get; set; }
+ public int LpMax { get; set; }
+ public int As { get; set; }
+ public int AsMax { get; set; }
+ public Weapon Weapon { get; set; }
}
}