1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2020-10-25 00:21:43 +02:00

15 lines
401 B
C#

using System;
namespace Artemis.Core
{
/// <summary>
/// Represents the base class for data model events that contain event data
/// </summary>
public class DataModelEventArgs
{
/// <summary>
/// Gets the time at which the event with these arguments was triggered
/// </summary>
public DateTime TriggerTime { get; internal set; }
}
}