Files
mixtape/zero.Core/Media/Models/MediaListQuery.cs
T
2021-11-20 13:52:28 +01:00

14 lines
263 B
C#

namespace zero.Media;
public class MediaListQuery : ListQuery<Media>
{
public string FolderId { get; set; }
}
public class MediaListItemQuery : ListQuery<MediaListItem>
{
public string FolderId { get; set; }
public bool SearchIsGlobal { get; set; }
}