netmash/NDB.Application.DataContracts/Query.cs

7 lines
146 B
C#
Raw Normal View History

2020-12-20 21:05:04 +02:00
using MediatR;
namespace NDB.Application.DataContracts
{
public abstract class Query<TResponse> : IRequest<TResponse>, IBaseRequest { }
}