You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
744 B
32 lines
744 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
#pragma warning disable CA2227 // Collection properties should be read only
|
|
|
|
/// <summary>
|
|
/// People entity.
|
|
/// </summary>
|
|
public class People
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the PeopleId.
|
|
/// </summary>
|
|
public required Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Persons Name.
|
|
/// </summary>
|
|
public required string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Type.
|
|
/// </summary>
|
|
public string? PersonType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the mapping of People to BaseItems.
|
|
/// </summary>
|
|
public ICollection<PeopleBaseItemMap>? BaseItems { get; set; }
|
|
}
|