Files
mixtape/zero.Core/Media/Models/MediaListQuery.cs
T

14 lines
263 B
C#
Raw Normal View History

2021-11-20 13:52:28 +01:00
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; }
}