mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 11:13:32 +01:00
Update to 3.5.2 and .net core 2.1
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
public enum ConnectSignupResponse
|
||||
{
|
||||
Failure,
|
||||
Success,
|
||||
EmailInUse,
|
||||
UsernameInUser
|
||||
}
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
using MediaBrowser.Model.Session;
|
||||
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Class SystemCommandEventArgs
|
||||
/// </summary>
|
||||
public class GeneralCommandEventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the command.
|
||||
/// </summary>
|
||||
/// <value>The command.</value>
|
||||
public GeneralCommand Command { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the type of the known command.
|
||||
/// </summary>
|
||||
/// <value>The type of the known command.</value>
|
||||
public GeneralCommandType? KnownCommandType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Class HttpResponseEventArgs
|
||||
/// </summary>
|
||||
public class HttpResponseEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the URL.
|
||||
/// </summary>
|
||||
/// <value>The URL.</value>
|
||||
public string Url { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the status code.
|
||||
/// </summary>
|
||||
/// <value>The status code.</value>
|
||||
public HttpStatusCode StatusCode { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the headers.
|
||||
/// </summary>
|
||||
/// <value>The headers.</value>
|
||||
public Dictionary<string, string> Headers { get; set; }
|
||||
|
||||
public HttpResponseEventArgs()
|
||||
{
|
||||
Headers = new Dictionary<string, string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
public class ServerDiscoveryInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the address.
|
||||
/// </summary>
|
||||
/// <value>The address.</value>
|
||||
public string Address { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the server identifier.
|
||||
/// </summary>
|
||||
/// <value>The server identifier.</value>
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the endpoint address.
|
||||
/// </summary>
|
||||
/// <value>The endpoint address.</value>
|
||||
public string EndpointAddress { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
using MediaBrowser.Model.Session;
|
||||
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
/// <summary>
|
||||
/// Class SessionUpdatesEventArgs
|
||||
/// </summary>
|
||||
public class SessionUpdatesEventArgs
|
||||
{
|
||||
public SessionInfoDto[] Sessions { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
public class WakeOnLanInfo
|
||||
{
|
||||
public string MacAddress { get; set; }
|
||||
public int Port { get; set; }
|
||||
|
||||
public WakeOnLanInfo()
|
||||
{
|
||||
Port = 9;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user