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

18 lines
333 B
C#
Raw Normal View History

2020-05-15 14:23:47 +02:00
namespace zero.Core.Entities
{
2020-09-02 15:46:54 +02:00
public class MediaListQuery : ListQuery<IMedia>
{
public string FolderId { get; set; }
}
public class MediaListItemQuery : ListQuery<MediaListItem>
2020-05-15 14:23:47 +02:00
{
public string FolderId { get; set; }
public bool SearchIsGlobal { get; set; }
public bool IsShared { get; set; }
2020-05-15 14:23:47 +02:00
}
}