Skip to content
Snippets Groups Projects
Commit 500ea3e1 authored by areynold's avatar areynold
Browse files

add v2 calendar dtos

parent bc2b5745
No related branches found
No related tags found
No related merge requests found
namespace BeckmanComms.Api.DataTransferObjects.V2.Events
{
/// <summary>
/// Information describing a webtools calendar.
/// </summary>
public class CalendarDto
{
/// <summary>
/// Calendar Name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Webtools calendar ID.
/// </summary>
public int CalendarId { get; set; }
/// <summary>
/// Human-readable description of calendar's purpose.
/// </summary>
public string Description { 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