2019-06-01 20:40:01 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
2020-08-29 17:30:09 +00:00
|
|
|
namespace Jellyfin.Data.Entities.Libraries
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An entity holding the metadata for a music album.
|
|
|
|
/// </summary>
|
2020-09-01 15:38:09 +00:00
|
|
|
public class MusicAlbumMetadata : ItemMetadata
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Initializes a new instance of the <see cref="MusicAlbumMetadata"/> class.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <param name="title">The title or name of the album.</param>
|
2020-06-19 10:21:49 +00:00
|
|
|
/// <param name="language">ISO-639-3 3-character language codes.</param>
|
2021-03-06 21:17:19 +00:00
|
|
|
public MusicAlbumMetadata(string title, string language) : base(title, language)
|
2020-05-02 21:56:05 +00:00
|
|
|
{
|
2020-08-30 22:50:54 +00:00
|
|
|
Labels = new HashSet<Company>();
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the barcode.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 255.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(255)]
|
|
|
|
[StringLength(255)]
|
2021-03-06 22:43:01 +00:00
|
|
|
public string? Barcode { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the label number.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 255.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(255)]
|
|
|
|
[StringLength(255)]
|
2021-03-06 22:43:01 +00:00
|
|
|
public string? LabelNumber { get; set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// Gets or sets the country code.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Max length = 2.
|
|
|
|
/// </remarks>
|
2020-05-02 21:56:05 +00:00
|
|
|
[MaxLength(2)]
|
|
|
|
[StringLength(2)]
|
2021-03-06 22:43:01 +00:00
|
|
|
public string? Country { get; set; }
|
2019-06-01 20:40:01 +00:00
|
|
|
|
2020-08-30 22:50:54 +00:00
|
|
|
/// <summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
/// Gets a collection containing the labels.
|
2020-08-30 22:50:54 +00:00
|
|
|
/// </summary>
|
2021-03-17 23:08:11 +00:00
|
|
|
public virtual ICollection<Company> Labels { get; private set; }
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|