From 632781d1adf54287ecfe7cbcbc17074e14a769b2 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Sat, 29 Sep 2018 23:59:42 +0200 Subject: added database methods --- DSACore/Models/Database/GroupChar.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'DSACore/Models/Database/GroupChar.cs') 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; } } } -- cgit v1.2.3-54-g00ecf