blob: 47ea7bd4bf377a583cf32a52a28a5b81104ed2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common.SystemInfo
{
/// <summary>
/// Represents a PPC system information service.
/// </summary>
/// <seealso cref="Tango.PPC.Common.IPPCService" />
public interface ISystemInfoService : IPPCService
{
}
}
|