mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
Moved some web socket classes to the model
This commit is contained in:
22
MediaBrowser.Model/Net/WebSocketMessageType.cs
Normal file
22
MediaBrowser.Model/Net/WebSocketMessageType.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
namespace MediaBrowser.Model.Net
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum WebSocketMessageType
|
||||
/// </summary>
|
||||
public enum WebSocketMessageType
|
||||
{
|
||||
/// <summary>
|
||||
/// The text
|
||||
/// </summary>
|
||||
Text,
|
||||
/// <summary>
|
||||
/// The binary
|
||||
/// </summary>
|
||||
Binary,
|
||||
/// <summary>
|
||||
/// The close
|
||||
/// </summary>
|
||||
Close
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user