mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 01:25:43 -05:00
12 lines
270 B
C#
12 lines
270 B
C#
using System.ServiceModel;
|
|
using WeatherService.Devices;
|
|
|
|
namespace WeatherService.Remote
|
|
{
|
|
public interface IWeatherServiceCallback : ICommunicationObject
|
|
{
|
|
[OperationContract(IsOneWay = true)]
|
|
void OnDeviceUpdate(DeviceBase device);
|
|
}
|
|
}
|