NewGroupRequest.cs 632 B

1234567891011121314151617181920212223
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Class NewGroupRequest.
  5. /// </summary>
  6. public class NewGroupRequest
  7. {
  8. /// <summary>
  9. /// Initializes a new instance of the <see cref="NewGroupRequest"/> class.
  10. /// </summary>
  11. /// <param name="groupName">The name of the new group.</param>
  12. public NewGroupRequest(string groupName)
  13. {
  14. GroupName = groupName;
  15. }
  16. /// <summary>
  17. /// Gets the group name.
  18. /// </summary>
  19. /// <value>The name of the new group.</value>
  20. public string GroupName { get; }
  21. }
  22. }