mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 20:08:27 +01:00
Clean up generated code
This commit is contained in:
@@ -1,15 +1,3 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated from a template.
|
||||
//
|
||||
// Manual changes to this file may cause unexpected behavior in your application.
|
||||
// Manual changes to this file will be overwritten if the code is regenerated.
|
||||
//
|
||||
// Produced by Entity Framework Visual Editor
|
||||
// https://github.com/msawczyn/EFDesigner
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
@@ -21,222 +9,232 @@ using System.Runtime.CompilerServices;
|
||||
|
||||
namespace Jellyfin.Data.Entities
|
||||
{
|
||||
public partial class User
|
||||
{
|
||||
partial void Init();
|
||||
[Table("User")]
|
||||
public partial class User
|
||||
{
|
||||
partial void Init();
|
||||
|
||||
/// <summary>
|
||||
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
||||
/// </summary>
|
||||
protected User()
|
||||
{
|
||||
Groups = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Group>();
|
||||
Permissions = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Permission>();
|
||||
ProviderMappings = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.ProviderMapping>();
|
||||
Preferences = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Preference>();
|
||||
/// <summary>
|
||||
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
||||
/// </summary>
|
||||
protected User()
|
||||
{
|
||||
Groups = new HashSet<Group>();
|
||||
Permissions = new HashSet<Permission>();
|
||||
ProviderMappings = new HashSet<ProviderMapping>();
|
||||
Preferences = new HashSet<Preference>();
|
||||
|
||||
Init();
|
||||
}
|
||||
Init();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
||||
/// </summary>
|
||||
public static User CreateUserUnsafe()
|
||||
{
|
||||
return new User();
|
||||
}
|
||||
/// <summary>
|
||||
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
||||
/// </summary>
|
||||
public static User CreateUserUnsafe()
|
||||
{
|
||||
return new User();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// </summary>
|
||||
/// <param name="username"></param>
|
||||
/// <param name="mustupdatepassword"></param>
|
||||
/// <param name="audiolanguagepreference"></param>
|
||||
/// <param name="authenticationproviderid"></param>
|
||||
/// <param name="invalidloginattemptcount"></param>
|
||||
/// <param name="subtitlemode"></param>
|
||||
/// <param name="playdefaultaudiotrack"></param>
|
||||
public User(string username, bool mustupdatepassword, string audiolanguagepreference, string authenticationproviderid, int invalidloginattemptcount, string subtitlemode, bool playdefaultaudiotrack)
|
||||
{
|
||||
if (string.IsNullOrEmpty(username)) throw new ArgumentNullException(nameof(username));
|
||||
this.Username = username;
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// </summary>
|
||||
/// <param name="username"></param>
|
||||
/// <param name="mustupdatepassword"></param>
|
||||
/// <param name="audiolanguagepreference"></param>
|
||||
/// <param name="authenticationproviderid"></param>
|
||||
/// <param name="invalidloginattemptcount"></param>
|
||||
/// <param name="subtitlemode"></param>
|
||||
/// <param name="playdefaultaudiotrack"></param>
|
||||
public User(string username, bool mustupdatepassword, string audiolanguagepreference, string authenticationproviderid, int invalidloginattemptcount, string subtitlemode, bool playdefaultaudiotrack)
|
||||
{
|
||||
if (string.IsNullOrEmpty(username)) throw new ArgumentNullException(nameof(username));
|
||||
this.Username = username;
|
||||
|
||||
this.MustUpdatePassword = mustupdatepassword;
|
||||
this.MustUpdatePassword = mustupdatepassword;
|
||||
|
||||
if (string.IsNullOrEmpty(audiolanguagepreference)) throw new ArgumentNullException(nameof(audiolanguagepreference));
|
||||
this.AudioLanguagePreference = audiolanguagepreference;
|
||||
if (string.IsNullOrEmpty(audiolanguagepreference)) throw new ArgumentNullException(nameof(audiolanguagepreference));
|
||||
this.AudioLanguagePreference = audiolanguagepreference;
|
||||
|
||||
if (string.IsNullOrEmpty(authenticationproviderid)) throw new ArgumentNullException(nameof(authenticationproviderid));
|
||||
this.AuthenticationProviderId = authenticationproviderid;
|
||||
if (string.IsNullOrEmpty(authenticationproviderid)) throw new ArgumentNullException(nameof(authenticationproviderid));
|
||||
this.AuthenticationProviderId = authenticationproviderid;
|
||||
|
||||
this.InvalidLoginAttemptCount = invalidloginattemptcount;
|
||||
this.InvalidLoginAttemptCount = invalidloginattemptcount;
|
||||
|
||||
if (string.IsNullOrEmpty(subtitlemode)) throw new ArgumentNullException(nameof(subtitlemode));
|
||||
this.SubtitleMode = subtitlemode;
|
||||
if (string.IsNullOrEmpty(subtitlemode)) throw new ArgumentNullException(nameof(subtitlemode));
|
||||
this.SubtitleMode = subtitlemode;
|
||||
|
||||
this.PlayDefaultAudioTrack = playdefaultaudiotrack;
|
||||
this.PlayDefaultAudioTrack = playdefaultaudiotrack;
|
||||
|
||||
this.Groups = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Group>();
|
||||
this.Permissions = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Permission>();
|
||||
this.ProviderMappings = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.ProviderMapping>();
|
||||
this.Preferences = new System.Collections.Generic.HashSet<global::Jellyfin.Data.Entities.Preference>();
|
||||
this.Groups = new HashSet<Group>();
|
||||
this.Permissions = new HashSet<Permission>();
|
||||
this.ProviderMappings = new HashSet<ProviderMapping>();
|
||||
this.Preferences = new HashSet<Preference>();
|
||||
|
||||
Init();
|
||||
}
|
||||
Init();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Static create function (for use in LINQ queries, etc.)
|
||||
/// </summary>
|
||||
/// <param name="username"></param>
|
||||
/// <param name="mustupdatepassword"></param>
|
||||
/// <param name="audiolanguagepreference"></param>
|
||||
/// <param name="authenticationproviderid"></param>
|
||||
/// <param name="invalidloginattemptcount"></param>
|
||||
/// <param name="subtitlemode"></param>
|
||||
/// <param name="playdefaultaudiotrack"></param>
|
||||
public static User Create(string username, bool mustupdatepassword, string audiolanguagepreference, string authenticationproviderid, int invalidloginattemptcount, string subtitlemode, bool playdefaultaudiotrack)
|
||||
{
|
||||
return new User(username, mustupdatepassword, audiolanguagepreference, authenticationproviderid, invalidloginattemptcount, subtitlemode, playdefaultaudiotrack);
|
||||
}
|
||||
/// <summary>
|
||||
/// Static create function (for use in LINQ queries, etc.)
|
||||
/// </summary>
|
||||
/// <param name="username"></param>
|
||||
/// <param name="mustupdatepassword"></param>
|
||||
/// <param name="audiolanguagepreference"></param>
|
||||
/// <param name="authenticationproviderid"></param>
|
||||
/// <param name="invalidloginattemptcount"></param>
|
||||
/// <param name="subtitlemode"></param>
|
||||
/// <param name="playdefaultaudiotrack"></param>
|
||||
public static User Create(string username, bool mustupdatepassword, string audiolanguagepreference, string authenticationproviderid, int invalidloginattemptcount, string subtitlemode, bool playdefaultaudiotrack)
|
||||
{
|
||||
return new User(username, mustupdatepassword, audiolanguagepreference, authenticationproviderid, invalidloginattemptcount, subtitlemode, playdefaultaudiotrack);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* Properties
|
||||
*************************************************************************/
|
||||
/*************************************************************************
|
||||
* Properties
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
public Guid Id { get; protected set; }
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||
public int Id { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
public byte[] LastLoginTimestamp { get; set; }
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string Username { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string Username { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string Password { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string Password { get; set; }
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public bool MustUpdatePassword { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public bool MustUpdatePassword { get; set; }
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string AudioLanguagePreference { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string AudioLanguagePreference { get; set; }
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string AuthenticationProviderId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string AuthenticationProviderId { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string GroupedFolders { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string GroupedFolders { get; set; }
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public int InvalidLoginAttemptCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public int InvalidLoginAttemptCount { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string LatestItemExcludes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string LatestItemExcludes { get; set; }
|
||||
public int? LoginAttemptsBeforeLockout { get; set; }
|
||||
|
||||
public int? LoginAttemptsBeforeLockout { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string MyMediaExcludes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string MyMediaExcludes { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string OrderedViews { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 65535
|
||||
/// </summary>
|
||||
[MaxLength(65535)]
|
||||
[StringLength(65535)]
|
||||
public string OrderedViews { get; set; }
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string SubtitleMode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 255
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string SubtitleMode { get; set; }
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public bool PlayDefaultAudioTrack { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// </summary>
|
||||
[Required]
|
||||
public bool PlayDefaultAudioTrack { get; set; }
|
||||
/// <summary>
|
||||
/// Max length = 255
|
||||
/// </summary>
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string SubtitleLanguagePrefernce { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Max length = 255
|
||||
/// </summary>
|
||||
[MaxLength(255)]
|
||||
[StringLength(255)]
|
||||
public string SubtitleLanguagePrefernce { get; set; }
|
||||
public bool? DisplayMissingEpisodes { get; set; }
|
||||
|
||||
public bool? DisplayMissingEpisodes { get; set; }
|
||||
public bool? DisplayCollectionsView { get; set; }
|
||||
|
||||
public bool? DisplayCollectionsView { get; set; }
|
||||
public bool? HidePlayedInLatest { get; set; }
|
||||
|
||||
public bool? HidePlayedInLatest { get; set; }
|
||||
public bool? RememberAudioSelections { get; set; }
|
||||
|
||||
public bool? RememberAudioSelections { get; set; }
|
||||
public bool? RememberSubtitleSelections { get; set; }
|
||||
|
||||
public bool? RememberSubtitleSelections { get; set; }
|
||||
public bool? EnableNextEpisodeAutoPlay { get; set; }
|
||||
|
||||
public bool? EnableNextEpisodeAutoPlay { get; set; }
|
||||
public bool? EnableUserPreferenceAccess { get; set; }
|
||||
|
||||
public bool? EnableUserPreferenceAccess { get; set; }
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
public uint RowVersion { get; set; }
|
||||
|
||||
/*************************************************************************
|
||||
* Navigation properties
|
||||
*************************************************************************/
|
||||
public void OnSavingChanges()
|
||||
{
|
||||
RowVersion++;
|
||||
}
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.Group> Groups { get; protected set; }
|
||||
/*************************************************************************
|
||||
* Navigation properties
|
||||
*************************************************************************/
|
||||
[ForeignKey("Group_Groups_Id")]
|
||||
public virtual ICollection<Group> Groups { get; protected set; }
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.Permission> Permissions { get; protected set; }
|
||||
[ForeignKey("Permission_Permissions_Id")]
|
||||
public virtual ICollection<Permission> Permissions { get; protected set; }
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.ProviderMapping> ProviderMappings { get; protected set; }
|
||||
[ForeignKey("ProviderMapping_ProviderMappings_Id")]
|
||||
public virtual ICollection<ProviderMapping> ProviderMappings { get; protected set; }
|
||||
|
||||
public virtual ICollection<global::Jellyfin.Data.Entities.Preference> Preferences { get; protected set; }
|
||||
[ForeignKey("Preference_Preferences_Id")]
|
||||
public virtual ICollection<Preference> Preferences { get; protected set; }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user