You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
6.7 KiB
208 lines
6.7 KiB
4 years ago
|
#pragma warning disable CS1591
|
||
|
|
||
6 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
||
4 years ago
|
namespace Jellyfin.Data.Entities.Libraries
|
||
6 years ago
|
{
|
||
5 years ago
|
public partial class MusicAlbumMetadata : Metadata
|
||
|
{
|
||
|
partial void Init();
|
||
|
|
||
|
/// <summary>
|
||
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
||
|
/// </summary>
|
||
5 years ago
|
protected MusicAlbumMetadata()
|
||
5 years ago
|
{
|
||
|
Labels = new HashSet<Company>();
|
||
|
|
||
|
Init();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
||
|
/// </summary>
|
||
|
public static MusicAlbumMetadata CreateMusicAlbumMetadataUnsafe()
|
||
|
{
|
||
|
return new MusicAlbumMetadata();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
/// Public constructor with required data.
|
||
5 years ago
|
/// </summary>
|
||
4 years ago
|
/// <param name="title">The title or name of the object.</param>
|
||
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||
4 years ago
|
/// <param name="dateadded">The date the object was added.</param>
|
||
|
/// <param name="datemodified">The date the object was last modified.</param>
|
||
5 years ago
|
/// <param name="_musicalbum0"></param>
|
||
|
public MusicAlbumMetadata(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
||
|
{
|
||
4 years ago
|
if (string.IsNullOrEmpty(title))
|
||
|
{
|
||
|
throw new ArgumentNullException(nameof(title));
|
||
|
}
|
||
|
|
||
5 years ago
|
this.Title = title;
|
||
|
|
||
4 years ago
|
if (string.IsNullOrEmpty(language))
|
||
|
{
|
||
|
throw new ArgumentNullException(nameof(language));
|
||
|
}
|
||
|
|
||
5 years ago
|
this.Language = language;
|
||
|
|
||
4 years ago
|
if (_musicalbum0 == null)
|
||
|
{
|
||
|
throw new ArgumentNullException(nameof(_musicalbum0));
|
||
|
}
|
||
|
|
||
5 years ago
|
_musicalbum0.MusicAlbumMetadata.Add(this);
|
||
|
|
||
|
this.Labels = new HashSet<Company>();
|
||
|
|
||
|
Init();
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Static create function (for use in LINQ queries, etc.)
|
||
|
/// </summary>
|
||
4 years ago
|
/// <param name="title">The title or name of the object.</param>
|
||
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
||
4 years ago
|
/// <param name="dateadded">The date the object was added.</param>
|
||
|
/// <param name="datemodified">The date the object was last modified.</param>
|
||
5 years ago
|
/// <param name="_musicalbum0"></param>
|
||
|
public static MusicAlbumMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, MusicAlbum _musicalbum0)
|
||
|
{
|
||
|
return new MusicAlbumMetadata(title, language, dateadded, datemodified, _musicalbum0);
|
||
|
}
|
||
|
|
||
|
/*************************************************************************
|
||
|
* Properties
|
||
|
*************************************************************************/
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
/// Backing field for Barcode.
|
||
5 years ago
|
/// </summary>
|
||
|
protected string _Barcode;
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of Barcode to be changed before setting.
|
||
|
/// </summary>
|
||
|
partial void SetBarcode(string oldValue, ref string newValue);
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of Barcode to be changed before returning.
|
||
|
/// </summary>
|
||
|
partial void GetBarcode(ref string result);
|
||
|
|
||
|
/// <summary>
|
||
|
/// Max length = 255
|
||
|
/// </summary>
|
||
|
[MaxLength(255)]
|
||
|
[StringLength(255)]
|
||
|
public string Barcode
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
string value = _Barcode;
|
||
|
GetBarcode(ref value);
|
||
4 years ago
|
return _Barcode = value;
|
||
5 years ago
|
}
|
||
4 years ago
|
|
||
5 years ago
|
set
|
||
|
{
|
||
|
string oldValue = _Barcode;
|
||
|
SetBarcode(oldValue, ref value);
|
||
|
if (oldValue != value)
|
||
|
{
|
||
|
_Barcode = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
/// Backing field for LabelNumber.
|
||
5 years ago
|
/// </summary>
|
||
|
protected string _LabelNumber;
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of LabelNumber to be changed before setting.
|
||
|
/// </summary>
|
||
|
partial void SetLabelNumber(string oldValue, ref string newValue);
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of LabelNumber to be changed before returning.
|
||
|
/// </summary>
|
||
|
partial void GetLabelNumber(ref string result);
|
||
|
|
||
|
/// <summary>
|
||
|
/// Max length = 255
|
||
|
/// </summary>
|
||
|
[MaxLength(255)]
|
||
|
[StringLength(255)]
|
||
|
public string LabelNumber
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
string value = _LabelNumber;
|
||
|
GetLabelNumber(ref value);
|
||
4 years ago
|
return _LabelNumber = value;
|
||
5 years ago
|
}
|
||
4 years ago
|
|
||
5 years ago
|
set
|
||
6 years ago
|
{
|
||
5 years ago
|
string oldValue = _LabelNumber;
|
||
|
SetLabelNumber(oldValue, ref value);
|
||
|
if (oldValue != value)
|
||
|
{
|
||
|
_LabelNumber = value;
|
||
|
}
|
||
6 years ago
|
}
|
||
5 years ago
|
}
|
||
|
|
||
|
/// <summary>
|
||
4 years ago
|
/// Backing field for Country.
|
||
5 years ago
|
/// </summary>
|
||
|
protected string _Country;
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of Country to be changed before setting.
|
||
|
/// </summary>
|
||
|
partial void SetCountry(string oldValue, ref string newValue);
|
||
|
/// <summary>
|
||
|
/// When provided in a partial class, allows value of Country to be changed before returning.
|
||
|
/// </summary>
|
||
|
partial void GetCountry(ref string result);
|
||
|
|
||
|
/// <summary>
|
||
|
/// Max length = 2
|
||
|
/// </summary>
|
||
|
[MaxLength(2)]
|
||
|
[StringLength(2)]
|
||
|
public string Country
|
||
|
{
|
||
|
get
|
||
6 years ago
|
{
|
||
5 years ago
|
string value = _Country;
|
||
|
GetCountry(ref value);
|
||
4 years ago
|
return _Country = value;
|
||
6 years ago
|
}
|
||
4 years ago
|
|
||
5 years ago
|
set
|
||
6 years ago
|
{
|
||
5 years ago
|
string oldValue = _Country;
|
||
|
SetCountry(oldValue, ref value);
|
||
|
if (oldValue != value)
|
||
|
{
|
||
|
_Country = value;
|
||
|
}
|
||
6 years ago
|
}
|
||
5 years ago
|
}
|
||
6 years ago
|
|
||
5 years ago
|
/*************************************************************************
|
||
|
* Navigation properties
|
||
|
*************************************************************************/
|
||
6 years ago
|
|
||
5 years ago
|
[ForeignKey("Company_Labels_Id")]
|
||
|
public virtual ICollection<Company> Labels { get; protected set; }
|
||
|
}
|
||
6 years ago
|
}
|
||
|
|