using MediaBrowser.Model.SyncPlay;
namespace MediaBrowser.Controller.SyncPlay.Requests
{
    /// 
    /// Class NewGroupRequest.
    /// 
    public class NewGroupRequest : ISyncPlayRequest
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The name of the new group.
        public NewGroupRequest(string groupName)
        {
            GroupName = groupName;
        }
        /// 
        /// Gets the group name.
        /// 
        /// The name of the new group.
        public string GroupName { get; }
        /// 
        public RequestType Type { get; } = RequestType.NewGroup;
    }
}