Skip to content
Snippets Groups Projects
Commit 444a6583 authored by areynold's avatar areynold
Browse files

Merge branch 'release/2.0.0-alpha09'

parents d8e430c4 5991278b
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>BeckmanComms.Api.DataTransferObjects</id>
<version>2.0.0-alpha08</version>
<version>2.0.0-alpha09</version>
<title>Beckman API Data Transfer Objects</title>
<authors>areynold</authors>
<owners>Beckman Institute; University of Illinois</owners>
......@@ -11,6 +11,10 @@
<description>Model classes for use with the Beckman Institute web API.</description>
<summary>Model classes for use with the Beckman Institute web API.</summary>
<releaseNotes>
2.0.0-alpha09:
* Add nullable EventDto recurrence ID.
* Make EventDto.EndDate nullable.
2.0.0-alpha08:
* Add group type property to GroupDto.
......
......@@ -35,7 +35,7 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events
/// <summary>
/// Ending date and time of event.
/// </summary>
public DateTime EndDate { get; set; }
public DateTime? EndDate { get; set; }
/// <summary>
/// Event location.
......@@ -71,5 +71,10 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events
/// Whether event is recurring.
/// </summary>
public bool Recurring { get; set; }
/// <summary>
/// Shared identifier linking recurring events.
/// </summary>
public int? RecurrenceId { get; set; }
}
}
\ No newline at end of file
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