mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
Add GPL modules
This commit is contained in:
21
MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
Normal file
21
MediaBrowser.Controller/Entities/InternalPeopleQuery.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
public class InternalPeopleQuery
|
||||
{
|
||||
public Guid ItemId { get; set; }
|
||||
public string[] PersonTypes { get; set; }
|
||||
public string[] ExcludePersonTypes { get; set; }
|
||||
public int? MaxListOrder { get; set; }
|
||||
public Guid AppearsInItemId { get; set; }
|
||||
public string NameContains { get; set; }
|
||||
|
||||
public InternalPeopleQuery()
|
||||
{
|
||||
PersonTypes = new string[] { };
|
||||
ExcludePersonTypes = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user