From 3e4a6839eea069f90820725a7b6d01462eb8d12b Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Tue, 14 Mar 2017 22:45:50 +0000 Subject: [PATCH] create GroupList object. #30 --- .../WindowsDataCenter/Interfaces/GroupList.cs | 17 +++++++++++++++++ .../Interfaces/Interfaces.csproj | 1 + 2 files changed, 18 insertions(+) create mode 100644 DataCenter_Windows/WindowsDataCenter/Interfaces/GroupList.cs diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/GroupList.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/GroupList.cs new file mode 100644 index 0000000..080b8f7 --- /dev/null +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/GroupList.cs @@ -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(); + } + public List Groups { get; set; } + } +} diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj b/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj index 79a3e8f..efff1a9 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj @@ -43,6 +43,7 @@ +