using System; using System.ComponentModel.DataAnnotations; namespace Jellyfin.Data.Entities { public partial class CompanyMetadata : Metadata { partial void Init(); /// /// Default constructor. Protected due to required properties, but present because EF needs it. /// protected CompanyMetadata() { Init(); } /// /// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving. /// public static CompanyMetadata CreateCompanyMetadataUnsafe() { return new CompanyMetadata(); } /// /// Public constructor with required data /// /// The title or name of the object /// ISO-639-3 3-character language codes /// public CompanyMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0) { if (string.IsNullOrEmpty(title)) throw new ArgumentNullException(nameof(title)); this.Title = title; if (string.IsNullOrEmpty(language)) throw new ArgumentNullException(nameof(language)); this.Language = language; if (_company0 == null) throw new ArgumentNullException(nameof(_company0)); _company0.CompanyMetadata.Add(this); Init(); } /// /// Static create function (for use in LINQ queries, etc.) /// /// The title or name of the object /// ISO-639-3 3-character language codes /// public static CompanyMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Company _company0) { return new CompanyMetadata(title, language, dateadded, datemodified, _company0); } /************************************************************************* * Properties *************************************************************************/ /// /// Backing field for Description /// protected string _Description; /// /// When provided in a partial class, allows value of Description to be changed before setting. /// partial void SetDescription(string oldValue, ref string newValue); /// /// When provided in a partial class, allows value of Description to be changed before returning. /// partial void GetDescription(ref string result); /// /// Max length = 65535 /// [MaxLength(65535)] [StringLength(65535)] public string Description { get { string value = _Description; GetDescription(ref value); return (_Description = value); } set { string oldValue = _Description; SetDescription(oldValue, ref value); if (oldValue != value) { _Description = value; } } } /// /// Backing field for Headquarters /// protected string _Headquarters; /// /// When provided in a partial class, allows value of Headquarters to be changed before setting. /// partial void SetHeadquarters(string oldValue, ref string newValue); /// /// When provided in a partial class, allows value of Headquarters to be changed before returning. /// partial void GetHeadquarters(ref string result); /// /// Max length = 255 /// [MaxLength(255)] [StringLength(255)] public string Headquarters { get { string value = _Headquarters; GetHeadquarters(ref value); return (_Headquarters = value); } set { string oldValue = _Headquarters; SetHeadquarters(oldValue, ref value); if (oldValue != value) { _Headquarters = value; } } } /// /// Backing field for Country /// protected string _Country; /// /// When provided in a partial class, allows value of Country to be changed before setting. /// partial void SetCountry(string oldValue, ref string newValue); /// /// When provided in a partial class, allows value of Country to be changed before returning. /// partial void GetCountry(ref string result); /// /// Max length = 2 /// [MaxLength(2)] [StringLength(2)] public string Country { get { string value = _Country; GetCountry(ref value); return (_Country = value); } set { string oldValue = _Country; SetCountry(oldValue, ref value); if (oldValue != value) { _Country = value; } } } /// /// Backing field for Homepage /// protected string _Homepage; /// /// When provided in a partial class, allows value of Homepage to be changed before setting. /// partial void SetHomepage(string oldValue, ref string newValue); /// /// When provided in a partial class, allows value of Homepage to be changed before returning. /// partial void GetHomepage(ref string result); /// /// Max length = 1024 /// [MaxLength(1024)] [StringLength(1024)] public string Homepage { get { string value = _Homepage; GetHomepage(ref value); return (_Homepage = value); } set { string oldValue = _Homepage; SetHomepage(oldValue, ref value); if (oldValue != value) { _Homepage = value; } } } /************************************************************************* * Navigation properties *************************************************************************/ } }