namespace MediaBrowser.Model.SyncPlay { /// /// Class NewGroupRequest. /// public class NewGroupRequest { /// /// Initializes a new instance of the class. /// public NewGroupRequest() { GroupName = string.Empty; } /// /// Gets or sets the group name. /// /// The name of the new group. public string GroupName { get; set; } } }