18 lines
333 B
C#
18 lines
333 B
C#
namespace zero.Core.Entities
|
|
{
|
|
public class MediaListQuery : ListQuery<IMedia>
|
|
{
|
|
public string FolderId { get; set; }
|
|
}
|
|
|
|
|
|
public class MediaListItemQuery : ListQuery<MediaListItem>
|
|
{
|
|
public string FolderId { get; set; }
|
|
|
|
public bool SearchIsGlobal { get; set; }
|
|
|
|
public bool IsShared { get; set; }
|
|
}
|
|
}
|