mirror of
https://github.com/ckaczor/SystemTemperatureStatusWindow.git
synced 2026-01-13 17:23:03 -05:00
16 lines
298 B
C#
16 lines
298 B
C#
using System.Collections.Generic;
|
|
using System.ServiceModel;
|
|
|
|
namespace SystemTemperatureService
|
|
{
|
|
[ServiceContract]
|
|
interface ISystemTemperatureService
|
|
{
|
|
[OperationContract]
|
|
List<Device> GetDeviceList();
|
|
|
|
[OperationContract]
|
|
void Shutdown();
|
|
}
|
|
}
|