diff options
| author | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 12:27:27 +0000 |
|---|---|---|
| committer | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 12:27:27 +0000 |
| commit | 6c819fe516ba742f1dcc77d61f6eedbe987cd692 (patch) | |
| tree | ac52922b9714ad30b4dc78e34f9a782b9d4b0664 /Jellyfin.Data/Entities/BaseItem.cs | |
| parent | d3a3d9fce3b891eb0be274a0cdc45a989e557652 (diff) | |
WIP BaseItem search refactoring
Diffstat (limited to 'Jellyfin.Data/Entities/BaseItem.cs')
| -rw-r--r-- | Jellyfin.Data/Entities/BaseItem.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/BaseItem.cs b/Jellyfin.Data/Entities/BaseItem.cs index c0c88b2e6..18166f7c1 100644 --- a/Jellyfin.Data/Entities/BaseItem.cs +++ b/Jellyfin.Data/Entities/BaseItem.cs @@ -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; } } |
