diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2026-04-12 12:42:49 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2026-04-12 12:42:49 +0900 |
| commit | 22644075e784ccd71d39a27eae6d1f7434f47a00 (patch) | |
| tree | a6ee54e87b0cecdbf170584447e7c5c18d6a0af4 /MediaBrowser.Controller | |
| parent | eacdc83fda01b712d2f9821e6624449304395486 (diff) | |
add NameStartsWith and NameLessThan filters to Person search
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index f4b3910b0e..373ec7ffeb 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -42,6 +42,10 @@ namespace MediaBrowser.Controller.Entities public string NameContains { get; set; } + public string NameStartsWith { get; set; } + + public string NameLessThan { get; set; } + public User User { get; set; } public bool? IsFavorite { get; set; } |
