mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-12 03:05:06 +00:00
16 lines
305 B
C#
16 lines
305 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.EventArguments
|
|
{
|
|
public sealed class DateTimeNullableEventArgs : GenericEventArgs<DateTime?>
|
|
{
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
public DateTimeNullableEventArgs(DateTime? data) : base(data)
|
|
{
|
|
}
|
|
}
|
|
}
|