Skip to content
Snippets Groups Projects
Commit 92894ec3 authored by areynold's avatar areynold
Browse files

add nullable recurrence id

parent 7de687d0
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,9 @@ ...@@ -11,6 +11,9 @@
<description>Model classes for use with the Beckman Institute web API.</description> <description>Model classes for use with the Beckman Institute web API.</description>
<summary>Model classes for use with the Beckman Institute web API.</summary> <summary>Model classes for use with the Beckman Institute web API.</summary>
<releaseNotes> <releaseNotes>
unreleased:
* Add nullable EventDto recurrence ID.
2.0.0-alpha08: 2.0.0-alpha08:
* Add group type property to GroupDto. * Add group type property to GroupDto.
......
...@@ -71,5 +71,10 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events ...@@ -71,5 +71,10 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events
/// Whether event is recurring. /// Whether event is recurring.
/// </summary> /// </summary>
public bool Recurring { get; set; } 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