mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 19:24:53 +00:00
17 lines
410 B
C#
17 lines
410 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.AppServer.Messengers
|
|
{
|
|
/// <summary>
|
|
/// Base class for event messages that include the type of message and an event type
|
|
/// </summary>
|
|
public abstract class DeviceEventMessageBase : DeviceMessageBase
|
|
{
|
|
/// <summary>
|
|
/// The event type
|
|
/// </summary>
|
|
[JsonProperty("eventType")]
|
|
public string EventType { get; set; }
|
|
}
|
|
|
|
} |