Skip to content
Snippets Groups Projects
PhotoDto.cs 484 B
Newer Older
  • Learn to ignore specific revisions
  • namespace BeckmanComms.Api.DataTransferObjects.V2.Directory
    
    areynold's avatar
    areynold committed
    {
        /// <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; }
        }
    }