netmash/NDB.Application.DataContracts/Query.cs

7 lines
150 B
C#
Raw Normal View History

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