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