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.
19 lines
508 B
C#
19 lines
508 B
C#
// <copyright file="OutboundWebSocketMessage.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Outbound websocket message.
|
|
/// </summary>
|
|
public class OutboundWebSocketMessage : WebSocketMessage, IOutboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the message id.
|
|
/// </summary>
|
|
public Guid MessageId { get; set; } = Guid.NewGuid();
|
|
}
|