added Group list to User object for UI to bind to in order to show list of associated groups etc. #59
17 lines
353 B
C#
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; }
|
|
}
|
|
}
|