| | 1 | | using System.ComponentModel.DataAnnotations; |
| | 2 | |
|
| | 3 | | namespace Jellyfin.Database.Implementations.Entities.Libraries |
| | 4 | | { |
| | 5 | | /// <summary> |
| | 6 | | /// An entity holding metadata for a <see cref="Company"/>. |
| | 7 | | /// </summary> |
| | 8 | | public class CompanyMetadata : ItemMetadata |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Initializes a new instance of the <see cref="CompanyMetadata"/> class. |
| | 12 | | /// </summary> |
| | 13 | | /// <param name="title">The title or name of the object.</param> |
| | 14 | | /// <param name="language">ISO-639-3 3-character language codes.</param> |
| 0 | 15 | | public CompanyMetadata(string title, string language) : base(title, language) |
| | 16 | | { |
| 0 | 17 | | } |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Gets or sets the description. |
| | 21 | | /// </summary> |
| | 22 | | /// <remarks> |
| | 23 | | /// Max length = 65535. |
| | 24 | | /// </remarks> |
| | 25 | | [MaxLength(65535)] |
| | 26 | | [StringLength(65535)] |
| | 27 | | public string? Description { get; set; } |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Gets or sets the headquarters. |
| | 31 | | /// </summary> |
| | 32 | | /// <remarks> |
| | 33 | | /// Max length = 255. |
| | 34 | | /// </remarks> |
| | 35 | | [MaxLength(255)] |
| | 36 | | [StringLength(255)] |
| | 37 | | public string? Headquarters { get; set; } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Gets or sets the country code. |
| | 41 | | /// </summary> |
| | 42 | | /// <remarks> |
| | 43 | | /// Max length = 2. |
| | 44 | | /// </remarks> |
| | 45 | | [MaxLength(2)] |
| | 46 | | [StringLength(2)] |
| | 47 | | public string? Country { get; set; } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// Gets or sets the homepage. |
| | 51 | | /// </summary> |
| | 52 | | /// <remarks> |
| | 53 | | /// Max length = 1024. |
| | 54 | | /// </remarks> |
| | 55 | | [MaxLength(1024)] |
| | 56 | | [StringLength(1024)] |
| | 57 | | public string? Homepage { get; set; } |
| | 58 | | } |
| | 59 | | } |