You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
794 B
29 lines
794 B
using MediaBrowser.Model.SyncPlay;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay.Requests
|
|
{
|
|
/// <summary>
|
|
/// Class NewGroupRequest.
|
|
/// </summary>
|
|
public class NewGroupRequest : ISyncPlayRequest
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="NewGroupRequest"/> class.
|
|
/// </summary>
|
|
/// <param name="groupName">The name of the new group.</param>
|
|
public NewGroupRequest(string groupName)
|
|
{
|
|
GroupName = groupName;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the group name.
|
|
/// </summary>
|
|
/// <value>The name of the new group.</value>
|
|
public string GroupName { get; }
|
|
|
|
/// <inheritdoc />
|
|
public RequestType Type { get; } = RequestType.NewGroup;
|
|
}
|
|
}
|