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