mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-26 10:15:40 -05:00
Initial commit
This commit is contained in:
28
EventArguments.cs
Normal file
28
EventArguments.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user