a03d2269a6
- ServiceResult<T>, ServiceError, ServiceErrorCode, Unit, ServiceResultHelper in Services/Core - RequestHandler<TRequest, TResponse> base class (MediatR-adapted, DoOnHandle pattern) - EmailTemplate handlers: Create, Update, Delete, Get, GetByService - EmailChannel handlers: Create, Update, Delete, Get, GetByService Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
7 lines
132 B
C#
7 lines
132 B
C#
namespace HrynCo.NotificationService.Services.Core;
|
|
|
|
public readonly struct Unit
|
|
{
|
|
public static readonly Unit Value = new();
|
|
}
|