Files
mixtape/zero.Core/Entities/RecycleBin/RecycleBinListQuery.cs
T
2020-08-26 23:32:48 +02:00

10 lines
191 B
C#

namespace zero.Core.Entities
{
public class RecycleBinListQuery : ListQuery<IRecycledEntity>
{
public string Group { get; set; }
public string OperationId { get; set; }
}
}