From 07bcb40315ce0f039724c38f1d26e6ec94e2132c Mon Sep 17 00:00:00 2001 From: "Chris.Watts90@outlook.com" Date: Mon, 27 Feb 2017 10:23:33 +0000 Subject: [PATCH] Added state to User object to support UI showing whether the user is in or out. #47 --- DataCenter_Windows/WindowsDataCenter/Interfaces/User.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/User.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/User.cs index 2fca02f..b9e3214 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/User.cs +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/User.cs @@ -21,5 +21,7 @@ namespace Interfaces } public List AssociatedIdentifiers { get; set; } + + public bool State { get; set; } } } \ No newline at end of file