diff options
| author | Michael VanOverbeek <[email protected]> | 2017-05-01 20:09:46 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-05-01 20:09:51 +0000 |
| commit | f893cbf3a11653132a802c57e75488991a312463 (patch) | |
| tree | 056ab21621e007dc706779b528311cbdf784f400 | |
| parent | 367e2dd6418de7d1944077588c228e80220996af (diff) | |
| download | shiftos_thereturn-f893cbf3a11653132a802c57e75488991a312463.tar.gz shiftos_thereturn-f893cbf3a11653132a802c57e75488991a312463.tar.bz2 shiftos_thereturn-f893cbf3a11653132a802c57e75488991a312463.zip | |
Fix user persistence bug
| -rw-r--r-- | ShiftOS.Objects/Save.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs index 4f91db7..2a02bbc 100644 --- a/ShiftOS.Objects/Save.cs +++ b/ShiftOS.Objects/Save.cs @@ -98,7 +98,7 @@ namespace ShiftOS.Objects return count; } - public List<ClientSave> Users = new List<ClientSave>(); + public List<ClientSave> Users { get; set; } } public class SettingsObject : DynamicObject |
