diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-09-02 18:00:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-02 18:00:22 -0400 |
| commit | 4f2f781e6815296647dddb3f54468717a18eb19e (patch) | |
| tree | d50e7ca71d93a047044b731ab464222f69293a02 /MediaBrowser.Controller/Entities | |
| parent | b3766b00d4c5ae38589774b30f4f1e0579a9619f (diff) | |
| parent | 50f08d41a411254f67cf2305fd7bb838119a1bc1 (diff) | |
Merge pull request #17756 from Shadowghost/fix-people-creation
Fix people and artist validator creation and deletion handling
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalItemsQuery.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs index 0e5a5047cd..eb2a3676ac 100644 --- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs @@ -432,12 +432,18 @@ namespace MediaBrowser.Controller.Entities public string? HasNoSubtitleTrackWithLanguage { get; set; } + /// <summary> + /// Gets or sets a value indicating whether to return only items nothing names any more. + /// </summary> public bool? IsDeadArtist { get; set; } public bool? IsDeadStudio { get; set; } public bool? IsDeadGenre { get; set; } + /// <summary> + /// Gets or sets a value indicating whether to return only items nothing names any more. + /// </summary> public bool? IsDeadPerson { get; set; } /// <summary> |
