af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
33 lines
943 B
C#
33 lines
943 B
C#
// <copyright file="NewGroupRequest.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay.Requests
|
|
{
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
/// <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;
|
|
}
|
|
}
|