aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/Information/InformationPackage.cs
blob: e48413db6e947e57c6c8879c45fbf34119bd6d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.SystemInfo;

namespace Tango.PPC.Shared.Information
{
    public class InformationPackage
    {
        public List<SystemObjectsCollection> System { get; set; }

        public InformationPackage()
        {
            System = new List<SystemObjectsCollection>();
        }
    }
}