FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/Interfaces/Group.cs
Chris.Watts90@outlook.com ca5a5ca4cb Created Group object.
added Group list to User object for UI to bind to in order to show list of associated groups etc.
#59
2017-03-08 16:25:20 +00:00

17 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Interfaces
{
public class Group
{
public int Id { get; set; }
public string Name { get; set; }
public int UserCount { get; set; }
public bool IsAssociatedToUser { get; set; }
}
}