15 lines
294 B
C#
15 lines
294 B
C#
using GozareshgirProgramManager.Application._Common.Models;
|
|
using MediatR;
|
|
|
|
namespace GozareshgirProgramManager.Application._Common.Interfaces;
|
|
|
|
public interface IBaseCommand : IRequest<OperationResult>
|
|
{
|
|
}
|
|
|
|
public interface IBaseCommand<TResponse> : IRequest<OperationResult<TResponse>>
|
|
{
|
|
}
|
|
|
|
|