From 0431b5afe4770a873f8f23568f7f88d5bcc483d5 Mon Sep 17 00:00:00 2001 From: Drew Tingen Date: Mon, 18 May 2020 15:27:01 -0400 Subject: [PATCH] feat: DateTimeNullableEventArgs --- .../EventArguments/DateTimeNullableEventArgs.cs | 15 +++++++++++++++ .../ICD.Common.Utils_SimplSharp.csproj | 1 + 2 files changed, 16 insertions(+) create mode 100644 ICD.Common.Utils/EventArguments/DateTimeNullableEventArgs.cs diff --git a/ICD.Common.Utils/EventArguments/DateTimeNullableEventArgs.cs b/ICD.Common.Utils/EventArguments/DateTimeNullableEventArgs.cs new file mode 100644 index 0000000..a2519ac --- /dev/null +++ b/ICD.Common.Utils/EventArguments/DateTimeNullableEventArgs.cs @@ -0,0 +1,15 @@ +using System; + +namespace ICD.Common.Utils.EventArguments +{ + public sealed class DateTimeNullableEventArgs : GenericEventArgs + { + /// + /// Constructor. + /// + /// + public DateTimeNullableEventArgs(DateTime? data) : base(data) + { + } + } +} diff --git a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj index 7000084..4ffcc38 100644 --- a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj +++ b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj @@ -98,6 +98,7 @@ +