19 lines
459 B
C#
19 lines
459 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Flexitime.Objects
|
|
{
|
|
public class Group
|
|
{
|
|
public Group()
|
|
{
|
|
IsPrivate = false;
|
|
Users = new List<User>();
|
|
}
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int UserCount { get; set; }
|
|
public bool IsPrivate { get; set; }
|
|
public List<User> Users { get; set; }
|
|
}
|
|
} |