Skip to content
Snippets Groups Projects
CalendarDto.cs 586 B
Newer Older
  • Learn to ignore specific revisions
  • areynold's avatar
    areynold committed
    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; }
        }
    }