mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 20:01:56 +08:00
13 lines
174 B
C#
13 lines
174 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.CQRS;
|
|
|
|
public interface ICommand : ICommand<Unit>
|
|
{
|
|
}
|
|
|
|
public interface ICommand<out T> : IRequest<T>
|
|
where T : notnull
|
|
{
|
|
}
|