blob: d21224c4d6f06cdf656cd11458f5de9d33d3c327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Integration.ExternalBridge.Network.Information;
namespace Tango.FSE.Common.SystemInfo
{
public interface ISystemInfoProvider
{
Task<InformationPackage> GetSystemInformationPackage();
}
}
|