#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();
///
/// Default constructor. Protected due to required properties, but present because EF needs it.
///
protected ProviderMapping()
{
Init();
}
///
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
///
public static ProviderMapping CreateProviderMappingUnsafe()
{
return new ProviderMapping();
}
///
/// Public constructor with required data.
///
///
///
///
///
///
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();
}
///
/// Static create function (for use in LINQ queries, etc.)
///
///
///
///
///
///
public static ProviderMapping Create(string providername, string providersecrets, string providerdata, User _user0, Group _group1)
{
return new ProviderMapping(providername, providersecrets, providerdata, _user0, _group1);
}
/*************************************************************************
* Properties
*************************************************************************/
///
/// Identity, Indexed, Required.
///
[Key]
[Required]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; protected set; }
///
/// Required, Max length = 255
///
[Required]
[MaxLength(255)]
[StringLength(255)]
public string ProviderName { get; set; }
///
/// Required, Max length = 65535
///
[Required]
[MaxLength(65535)]
[StringLength(65535)]
public string ProviderSecrets { get; set; }
///
/// Required, Max length = 65535
///
[Required]
[MaxLength(65535)]
[StringLength(65535)]
public string ProviderData { get; set; }
///
/// Required, ConcurrenyToken.
///
[ConcurrencyCheck]
[Required]
public uint RowVersion { get; set; }
public void OnSavingChanges()
{
RowVersion++;
}
/*************************************************************************
* Navigation properties
*************************************************************************/
}
}