diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-12-15 08:28:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-15 08:28:44 +0100 |
| commit | 4c9bd905c6ecbcf77ab644d3d936d17b1bb8e967 (patch) | |
| tree | a2a2d1e7a6c591eee190342a172a8b9d7d51a802 /MediaBrowser.Model/Session | |
| parent | ec9cff29dfa0c0b08f4181b753eadab34cb05e3c (diff) | |
| parent | 87439665d782a7a0f24d4015d53d584e66e40c2f (diff) | |
Merge pull request #6979 from crobibero/baseitemkind
Use BaseItemKind where possible
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/BrowseRequest.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Session/BrowseRequest.cs b/MediaBrowser.Model/Session/BrowseRequest.cs index 65afe5cf3..5ad7d783a 100644 --- a/MediaBrowser.Model/Session/BrowseRequest.cs +++ b/MediaBrowser.Model/Session/BrowseRequest.cs @@ -1,3 +1,5 @@ +using Jellyfin.Data.Enums; + #nullable disable namespace MediaBrowser.Model.Session { @@ -8,10 +10,9 @@ namespace MediaBrowser.Model.Session { /// <summary> /// Gets or sets the item type. - /// Artist, Genre, Studio, Person, or any kind of BaseItem. /// </summary> /// <value>The type of the item.</value> - public string ItemType { get; set; } + public BaseItemKind ItemType { get; set; } /// <summary> /// Gets or sets the item id. |
