using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Shared.Information;
namespace Tango.FSE.Common.SystemInfo
{
///
/// Represents a remote machine PPC system information provider.
///
public interface ISystemInfoProvider
{
///
/// Gets the machine total dye meters.
///
int TotalDyeMeters { get; }
///
/// Gets the machine total dye time.
///
TimeSpan TotalDyeTime { get; }
///
/// Gets the system information package from the remote machine.
///
///
Task GetSystemInformationPackage();
}
}