create GroupList object.

#30
This commit is contained in:
chris.watts90@outlook.com 2017-03-14 22:45:50 +00:00
parent 0cbc9dffbb
commit 3e4a6839ee
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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; }
}
}

View File

@ -43,6 +43,7 @@
<Compile Include="AppDetails.cs" />
<Compile Include="DailyLogs.cs" />
<Compile Include="Group.cs" />
<Compile Include="GroupList.cs" />
<Compile Include="ILogger.cs" />
<Compile Include="IRepository.cs" />
<Compile Include="Identifier.cs" />