using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities;
///
/// People entity.
///
public class People
{
///
/// Gets or Sets The ItemId.
///
public required Guid ItemId { get; set; }
///
/// Gets or Sets Reference Item.
///
public required BaseItemEntity Item { get; set; }
///
/// Gets or Sets the Persons Name.
///
public required string Name { get; set; }
///
/// Gets or Sets the Role.
///
public string? Role { get; set; }
///
/// Gets or Sets the Type.
///
public string? PersonType { get; set; }
///
/// Gets or Sets the SortOrder.
///
public int? SortOrder { get; set; }
///
/// Gets or Sets the ListOrder.
///
public int? ListOrder { get; set; }
}