Files
mixtape/zero.Core/Entities/RecycleBin/RecycleBinListQuery.cs
T
2021-05-04 17:23:52 +02:00

10 lines
190 B
C#

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