jellyfin/Jellyfin.Data/Entities/Libraries/CompanyMetadata.cs

75 lines
2.1 KiB
C#
Raw Normal View History

using System;
using System.ComponentModel.DataAnnotations;
2020-08-29 13:30:09 -04:00
namespace Jellyfin.Data.Entities.Libraries
{
/// <summary>
/// An entity holding metadata for a <see cref="Company"/>.
/// </summary>
public class CompanyMetadata : Metadata
2020-05-02 17:56:05 -04:00
{
/// <summary>
/// Initializes a new instance of the <see cref="CompanyMetadata"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
2020-06-19 06:21:49 -04:00
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
/// <param name="company">The company.</param>
public CompanyMetadata(string title, string language, Company company) : base(title, language)
2020-05-02 17:56:05 -04:00
{
if (company == null)
2020-06-20 04:35:29 -04:00
{
throw new ArgumentNullException(nameof(company));
2020-06-20 04:35:29 -04:00
}
2020-05-02 17:56:05 -04:00
company.CompanyMetadata.Add(this);
2020-05-02 17:56:05 -04:00
}
/// <summary>
/// Initializes a new instance of the <see cref="CompanyMetadata"/> class.
2020-05-02 17:56:05 -04:00
/// </summary>
protected CompanyMetadata()
2020-05-02 17:56:05 -04:00
{
}
/// <summary>
/// Gets or sets the description.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 65535.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(65535)]
[StringLength(65535)]
public string Description { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the headquarters.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 255.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(255)]
[StringLength(255)]
public string Headquarters { get; set; }
2020-06-15 17:43:52 -04:00
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the country code.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 2.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(2)]
[StringLength(2)]
public string Country { get; set; }
2020-05-02 17:56:05 -04:00
/// <summary>
/// Gets or sets the homepage.
2020-05-02 17:56:05 -04:00
/// </summary>
/// <remarks>
/// Max length = 1024.
/// </remarks>
2020-05-02 17:56:05 -04:00
[MaxLength(1024)]
[StringLength(1024)]
public string Homepage { get; set; }
2020-05-02 17:56:05 -04:00
}
}