| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CA2227, CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using Jellyfin.Data.Enums; |
| | 8 | | using MediaBrowser.Model.Entities; |
| | 9 | |
|
| | 10 | | namespace MediaBrowser.Controller.Entities |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// This is a small Person stub that is attached to BaseItems. |
| | 14 | | /// </summary> |
| | 15 | | public sealed class PersonInfo : IHasProviderIds |
| | 16 | | { |
| | 17 | | public PersonInfo() |
| | 18 | | { |
| 73 | 19 | | ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| 73 | 20 | | Id = Guid.NewGuid(); |
| 73 | 21 | | } |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Gets or Sets the PersonId. |
| | 25 | | /// </summary> |
| | 26 | | public Guid Id { get; set; } |
| | 27 | |
|
| | 28 | | public Guid ItemId { get; set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Gets or sets the name. |
| | 32 | | /// </summary> |
| | 33 | | /// <value>The name.</value> |
| | 34 | | public string Name { get; set; } |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Gets or sets the role. |
| | 38 | | /// </summary> |
| | 39 | | /// <value>The role.</value> |
| | 40 | | public string Role { get; set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Gets or sets the type. |
| | 44 | | /// </summary> |
| | 45 | | /// <value>The type.</value> |
| | 46 | | public PersonKind Type { get; set; } |
| | 47 | |
|
| | 48 | | /// <summary> |
| | 49 | | /// Gets or sets the ascending sort order. |
| | 50 | | /// </summary> |
| | 51 | | /// <value>The sort order.</value> |
| | 52 | | public int? SortOrder { get; set; } |
| | 53 | |
|
| | 54 | | public string ImageUrl { get; set; } |
| | 55 | |
|
| | 56 | | public Dictionary<string, string> ProviderIds { get; set; } |
| | 57 | |
|
| | 58 | | /// <summary> |
| | 59 | | /// Returns a <see cref="string" /> that represents this instance. |
| | 60 | | /// </summary> |
| | 61 | | /// <returns>A <see cref="string" /> that represents this instance.</returns> |
| | 62 | | public override string ToString() |
| | 63 | | { |
| 0 | 64 | | return Name; |
| | 65 | | } |
| | 66 | |
|
| 0 | 67 | | public bool IsType(PersonKind type) => Type == type || string.Equals(type.ToString(), Role, StringComparison.Ord |
| | 68 | | } |
| | 69 | | } |