summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/GroupChar.cs
diff options
context:
space:
mode:
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; }
}
}