mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
Remove more Connect related stuff
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Connect
|
||||
{
|
||||
public class ConnectAuthorization
|
||||
{
|
||||
public string ConnectUserId { get; set; }
|
||||
public string UserName { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
public string Id { get; set; }
|
||||
public string[] EnabledLibraries { get; set; }
|
||||
public bool EnableLiveTv { get; set; }
|
||||
public string[] EnabledChannels { get; set; }
|
||||
|
||||
public ConnectAuthorization()
|
||||
{
|
||||
EnabledLibraries = Array.Empty<string>();
|
||||
EnabledChannels = Array.Empty<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
namespace MediaBrowser.Model.Connect
|
||||
{
|
||||
public class ConnectUser
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Email { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public string ImageUrl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
namespace MediaBrowser.Model.Connect
|
||||
{
|
||||
public class ConnectUserQuery
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string NameOrEmail { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
namespace MediaBrowser.Model.Connect
|
||||
{
|
||||
public enum UserLinkType
|
||||
{
|
||||
/// <summary>
|
||||
/// The linked user
|
||||
/// </summary>
|
||||
LinkedUser = 0,
|
||||
/// <summary>
|
||||
/// The guest
|
||||
/// </summary>
|
||||
Guest = 1
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using MediaBrowser.Model.Configuration;
|
||||
using MediaBrowser.Model.Connect;
|
||||
using MediaBrowser.Model.Users;
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
@@ -29,22 +28,6 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The name of the server.</value>
|
||||
public string ServerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the connect user.
|
||||
/// </summary>
|
||||
/// <value>The name of the connect user.</value>
|
||||
public string ConnectUserName { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the connect user identifier.
|
||||
/// </summary>
|
||||
/// <value>The connect user identifier.</value>
|
||||
public string ConnectUserId { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the type of the connect link.
|
||||
/// </summary>
|
||||
/// <value>The type of the connect link.</value>
|
||||
public UserLinkType? ConnectLinkType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the id.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user