mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Found via `codespell -q 3 -D ../../dictionary.txt -S "./Emby.Server.Implementations/Localization" -L allready,childrens,groupe,inh,raisons,re-use,som,supercede,superceded,thirdparty,whoknows`
45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
|
|
/// <summary>
|
|
/// Mapping table for People to BaseItems.
|
|
/// </summary>
|
|
public class PeopleBaseItemMap
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the SortOrder.
|
|
/// </summary>
|
|
public int? SortOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the ListOrder.
|
|
/// </summary>
|
|
public int? ListOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Role name the associated actor played in the <see cref="BaseItemEntity"/>.
|
|
/// </summary>
|
|
public string? Role { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets The ItemId.
|
|
/// </summary>
|
|
public required Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Reference Item.
|
|
/// </summary>
|
|
public required BaseItemEntity Item { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets The PeopleId.
|
|
/// </summary>
|
|
public required Guid PeopleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Reference People.
|
|
/// </summary>
|
|
public required People People { get; set; }
|
|
}
|