FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/Interfaces/GroupList.cs

18 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Interfaces
{
public class GroupList
{
public GroupList()
{
Groups = new List<Group>();
}
public List<Group> Groups { get; set; }
}
}