diff --git a/B3ClientService/BO/SyncBO/MinWPF_User.cs b/B3ClientService/BO/SyncBO/MinWPF_User.cs index 3db8852..25af1af 100644 --- a/B3ClientService/BO/SyncBO/MinWPF_User.cs +++ b/B3ClientService/BO/SyncBO/MinWPF_User.cs @@ -28,5 +28,7 @@ namespace BWP.B3ClientService.BO public byte[] Password { get; set; } public string RoleSchema { get; set; } + + public string Spell { get; set; } } } diff --git a/B3ClientService/Tasks/SyncInfoFromServer.cs b/B3ClientService/Tasks/SyncInfoFromServer.cs index 8ed730f..9af40be 100644 --- a/B3ClientService/Tasks/SyncInfoFromServer.cs +++ b/B3ClientService/Tasks/SyncInfoFromServer.cs @@ -198,6 +198,7 @@ namespace BWP.B3ClientService.Tasks entity.Name = o.Get("Name"); entity.Stopped = o.Get("Stopped"); entity.Password = o.Get("Password"); + entity.Spell = o.Get("Spell"); entity.RoleSchema = "default";//o.Get("RoleSchema"); context.Session.Insert(entity); }