mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
WIP BaseItem search refactoring
This commit is contained in:
parent
d3a3d9fce3
commit
6c819fe516
9 changed files with 1408 additions and 1250 deletions
|
|
@ -161,4 +161,10 @@ public class BaseItem
|
|||
public int? Height { get; set; }
|
||||
|
||||
public long? Size { get; set; }
|
||||
|
||||
public ICollection<People>? Peoples { get; set; }
|
||||
|
||||
public ICollection<UserData>? UserData { get; set; }
|
||||
|
||||
public ICollection<ItemValue>? ItemValues { get; set; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ namespace Jellyfin.Data.Entities;
|
|||
public class People
|
||||
{
|
||||
public Guid ItemId { get; set; }
|
||||
public BaseItem Item { get; set; }
|
||||
|
||||
public required string Name { get; set; }
|
||||
public string? Role { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue