Skip to content
Snippets Groups Projects
GroupLeaderDto.cs 425 B
Newer Older
  • Learn to ignore specific revisions
  • areynold's avatar
    areynold committed
    namespace Api.DataTransferObjects.V2.Directory
    {
        /// <summary>
        /// Data Transfer Object representing a Beckman group leader.
        /// </summary>
        public class GroupLeaderDto
        {
            /// <summary>
            /// Leader name.
            /// </summary>
            public string Name { get; set; }
    
            /// <summary>
            /// Leader title.
            /// </summary>
            public string Title { get; set; }
        }
    }