blob: b1834a70d5377c51689095619b624c7a9022b6a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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; }
}
|