Delete ProviderMapping.cs
This commit is contained in:
parent
b1b2d399f8
commit
81d03383e3
|
@ -31,7 +31,6 @@ namespace Jellyfin.Data.Entities
|
||||||
Id = Guid.NewGuid();
|
Id = Guid.NewGuid();
|
||||||
|
|
||||||
Permissions = new HashSet<Permission>();
|
Permissions = new HashSet<Permission>();
|
||||||
ProviderMappings = new HashSet<ProviderMapping>();
|
|
||||||
Preferences = new HashSet<Preference>();
|
Preferences = new HashSet<Preference>();
|
||||||
|
|
||||||
Init();
|
Init();
|
||||||
|
@ -93,9 +92,6 @@ namespace Jellyfin.Data.Entities
|
||||||
[ForeignKey("Permission_GroupPermissions_Id")]
|
[ForeignKey("Permission_GroupPermissions_Id")]
|
||||||
public virtual ICollection<Permission> Permissions { get; protected set; }
|
public virtual ICollection<Permission> Permissions { get; protected set; }
|
||||||
|
|
||||||
[ForeignKey("ProviderMapping_ProviderMappings_Id")]
|
|
||||||
public virtual ICollection<ProviderMapping> ProviderMappings { get; protected set; }
|
|
||||||
|
|
||||||
[ForeignKey("Preference_Preferences_Id")]
|
[ForeignKey("Preference_Preferences_Id")]
|
||||||
public virtual ICollection<Preference> Preferences { get; protected set; }
|
public virtual ICollection<Preference> Preferences { get; protected set; }
|
||||||
|
|
||||||
|
|
|
@ -1,129 +0,0 @@
|
||||||
#pragma warning disable CS1591
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
|
|
||||||
namespace Jellyfin.Data.Entities
|
|
||||||
{
|
|
||||||
public partial class ProviderMapping
|
|
||||||
{
|
|
||||||
partial void Init();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
||||||
/// </summary>
|
|
||||||
protected ProviderMapping()
|
|
||||||
{
|
|
||||||
Init();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
|
||||||
/// </summary>
|
|
||||||
public static ProviderMapping CreateProviderMappingUnsafe()
|
|
||||||
{
|
|
||||||
return new ProviderMapping();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Public constructor with required data.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="providername"></param>
|
|
||||||
/// <param name="providersecrets"></param>
|
|
||||||
/// <param name="providerdata"></param>
|
|
||||||
/// <param name="_user0"></param>
|
|
||||||
/// <param name="_group1"></param>
|
|
||||||
public ProviderMapping(string providername, string providersecrets, string providerdata, User _user0, Group _group1)
|
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(providername))
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(providername));
|
|
||||||
}
|
|
||||||
|
|
||||||
this.ProviderName = providername;
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(providersecrets))
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(providersecrets));
|
|
||||||
}
|
|
||||||
|
|
||||||
this.ProviderSecrets = providersecrets;
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(providerdata))
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(providerdata));
|
|
||||||
}
|
|
||||||
|
|
||||||
this.ProviderData = providerdata;
|
|
||||||
|
|
||||||
Init();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Static create function (for use in LINQ queries, etc.)
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="providername"></param>
|
|
||||||
/// <param name="providersecrets"></param>
|
|
||||||
/// <param name="providerdata"></param>
|
|
||||||
/// <param name="_user0"></param>
|
|
||||||
/// <param name="_group1"></param>
|
|
||||||
public static ProviderMapping Create(string providername, string providersecrets, string providerdata, User _user0, Group _group1)
|
|
||||||
{
|
|
||||||
return new ProviderMapping(providername, providersecrets, providerdata, _user0, _group1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*************************************************************************
|
|
||||||
* Properties
|
|
||||||
*************************************************************************/
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Identity, Indexed, Required.
|
|
||||||
/// </summary>
|
|
||||||
[Key]
|
|
||||||
[Required]
|
|
||||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
||||||
public int Id { get; protected set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required, Max length = 255
|
|
||||||
/// </summary>
|
|
||||||
[Required]
|
|
||||||
[MaxLength(255)]
|
|
||||||
[StringLength(255)]
|
|
||||||
public string ProviderName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required, Max length = 65535
|
|
||||||
/// </summary>
|
|
||||||
[Required]
|
|
||||||
[MaxLength(65535)]
|
|
||||||
[StringLength(65535)]
|
|
||||||
public string ProviderSecrets { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required, Max length = 65535
|
|
||||||
/// </summary>
|
|
||||||
[Required]
|
|
||||||
[MaxLength(65535)]
|
|
||||||
[StringLength(65535)]
|
|
||||||
public string ProviderData { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Required, ConcurrenyToken.
|
|
||||||
/// </summary>
|
|
||||||
[ConcurrencyCheck]
|
|
||||||
[Required]
|
|
||||||
public uint RowVersion { get; set; }
|
|
||||||
|
|
||||||
public void OnSavingChanges()
|
|
||||||
{
|
|
||||||
RowVersion++;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*************************************************************************
|
|
||||||
* Navigation properties
|
|
||||||
*************************************************************************/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user