Skip to content
Snippets Groups Projects
PhotoDto.cs 471 B
Newer Older
  • Learn to ignore specific revisions
  • areynold's avatar
    areynold committed
    namespace Api.DataTransferObjects.V2.Directory
    {
        /// <summary>
        /// Data Transfer Object representing a staff directory photo.
        /// </summary>
        public class PhotoDto
        {
            /// <summary>
            /// Photo's url.
            /// </summary>
            public string Url { get; set; }
    
            /// <summary>
            /// Description of photo for use with required HTML alt attributes.
            /// </summary>
            public string AltText { get; set; }
        }
    }