Skip to content
Snippets Groups Projects
AffiliationDto.cs 445 B
Newer Older
  • Learn to ignore specific revisions
  • areynold's avatar
    areynold committed
    namespace Api.DataTransferObjects.V2.Directory
    {
        /// <summary>
        /// Data Transfer object representing Beckman staff group membership.
        /// </summary>
        public class AffiliationDto
        {
            /// <summary>
            /// Group name.
            /// </summary>
            public string Name { get; set; }
    
            /// <summary>
            /// Group abbreviation.
            /// </summary>
            public string Abbreviation { get; set; }
        }
    }