2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
public class MobileStatusEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
public string Device { get; set; }
|
|
|
|
|
|
|
|
#region Constructor - MobileStatus(ManagerConnection source)
|
|
|
|
|
|
|
|
public MobileStatusEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|