mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-16 17:42:24 +00:00
24 lines
632 B
C#
24 lines
632 B
C#
namespace MediaBrowser.Model.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Class NewGroupRequest.
|
|
/// </summary>
|
|
public class NewGroupRequest
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|