mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
15 lines
401 B
C#
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; }
|
|
}
|
|
} |