diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2026-04-13 11:57:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-13 11:57:33 +0200 |
| commit | ec9c94bd7a993a7cfba1cb81730a78b06f5cf37f (patch) | |
| tree | 7f1bce3e1561d43c54b86b0251705bff292bd71c /MediaBrowser.Controller | |
| parent | 6fc406f2c58e9dafc10f28d9c0e4eeb68283e26c (diff) | |
| parent | bb265cd4030e966aec1afbd31eafc0973531c232 (diff) | |
Merge pull request #16619 from dkanada/person-filter
add NameStartsWith and NameLessThan filters to Person search
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index f4b3910b0e..e12ba22343 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -42,6 +42,12 @@ namespace MediaBrowser.Controller.Entities public string NameContains { get; set; } + public string NameStartsWith { get; set; } + + public string NameLessThan { get; set; } + + public string NameStartsWithOrGreater { get; set; } + public User User { get; set; } public bool? IsFavorite { get; set; } |
