aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/ApiClient
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/ApiClient')
-rw-r--r--MediaBrowser.Model/ApiClient/ConnectSignupResponse.cs10
-rw-r--r--MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs22
-rw-r--r--MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs33
-rw-r--r--MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs27
-rw-r--r--MediaBrowser.Model/ApiClient/SessionUpdatesEventArgs.cs12
-rw-r--r--MediaBrowser.Model/ApiClient/WakeOnLanInfo.cs13
6 files changed, 0 insertions, 117 deletions
diff --git a/MediaBrowser.Model/ApiClient/ConnectSignupResponse.cs b/MediaBrowser.Model/ApiClient/ConnectSignupResponse.cs
deleted file mode 100644
index a34165b23..000000000
--- a/MediaBrowser.Model/ApiClient/ConnectSignupResponse.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace MediaBrowser.Model.ApiClient
-{
- public enum ConnectSignupResponse
- {
- Failure,
- Success,
- EmailInUse,
- UsernameInUser
- }
-}
diff --git a/MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs b/MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs
deleted file mode 100644
index 3c0b09da8..000000000
--- a/MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs
+++ /dev/null
@@ -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; }
- }
-}
diff --git a/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs b/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs
deleted file mode 100644
index b1c19f056..000000000
--- a/MediaBrowser.Model/ApiClient/HttpResponseEventArgs.cs
+++ /dev/null
@@ -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>();
- }
- }
-}
diff --git a/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs b/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs
deleted file mode 100644
index e2f780605..000000000
--- a/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs
+++ /dev/null
@@ -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; }
- }
-}
diff --git a/MediaBrowser.Model/ApiClient/SessionUpdatesEventArgs.cs b/MediaBrowser.Model/ApiClient/SessionUpdatesEventArgs.cs
deleted file mode 100644
index af9a0986b..000000000
--- a/MediaBrowser.Model/ApiClient/SessionUpdatesEventArgs.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using MediaBrowser.Model.Session;
-
-namespace MediaBrowser.Model.ApiClient
-{
- /// <summary>
- /// Class SessionUpdatesEventArgs
- /// </summary>
- public class SessionUpdatesEventArgs
- {
- public SessionInfoDto[] Sessions { get; set; }
- }
-} \ No newline at end of file
diff --git a/MediaBrowser.Model/ApiClient/WakeOnLanInfo.cs b/MediaBrowser.Model/ApiClient/WakeOnLanInfo.cs
deleted file mode 100644
index f7a3c4ebb..000000000
--- a/MediaBrowser.Model/ApiClient/WakeOnLanInfo.cs
+++ /dev/null
@@ -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;
- }
- }
-} \ No newline at end of file