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.
29 lines
819 B
C#
29 lines
819 B
C#
// <copyright file="UserDeletedMessage.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
/// <summary>
|
|
/// User deleted message.
|
|
/// </summary>
|
|
public class UserDeletedMessage : OutboundWebSocketMessage<Guid>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UserDeletedMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">The user id.</param>
|
|
public UserDeletedMessage(Guid data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.UserDeleted)]
|
|
public override SessionMessageType MessageType => SessionMessageType.UserDeleted;
|
|
}
|