mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-14 01:25:43 -05:00
29 lines
489 B
C#
29 lines
489 B
C#
using System;
|
|
using WeatherService.Devices;
|
|
|
|
namespace WeatherService
|
|
{
|
|
#region DeviceRefreshed
|
|
|
|
[Serializable]
|
|
public class DeviceRefreshedEventArgs : EventArgs
|
|
{
|
|
private readonly DeviceBase _device;
|
|
|
|
public DeviceRefreshedEventArgs(DeviceBase Device)
|
|
{
|
|
_device = Device;
|
|
}
|
|
|
|
public DeviceBase Device
|
|
{
|
|
get
|
|
{
|
|
return _device;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|