Skip to content
Snippets Groups Projects
Commit 83fd5b6e authored by areynold's avatar areynold
Browse files

make eventdto.enddate nullable

parent 92894ec3
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
<releaseNotes> <releaseNotes>
unreleased: unreleased:
* Add nullable EventDto recurrence ID. * Add nullable EventDto recurrence ID.
* Make EventDto.EndDate nullable.
2.0.0-alpha08: 2.0.0-alpha08:
* Add group type property to GroupDto. * Add group type property to GroupDto.
......
...@@ -35,7 +35,7 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events ...@@ -35,7 +35,7 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events
/// <summary> /// <summary>
/// Ending date and time of event. /// Ending date and time of event.
/// </summary> /// </summary>
public DateTime EndDate { get; set; } public DateTime? EndDate { get; set; }
/// <summary> /// <summary>
/// Event location. /// Event location.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment