Teeny weeny cleanup

This commit is contained in:
lumijiez
2025-06-21 23:35:52 +03:00
parent cae87ee1b7
commit 28fc432705
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ namespace Imprink.Application.Commands.Categories;
public class DeleteCategoryCommand : IRequest<bool>
{
public Guid Id { get; set; }
public Guid Id { get; init; }
}
public class DeleteCategoryHandler(IUnitOfWork unitOfWork) : IRequestHandler<DeleteCategoryCommand, bool>

View File

@@ -2,4 +2,4 @@ using AutoMapper;
namespace Imprink.Application;
public abstract class MappingProfile : Profile { }
public abstract class MappingProfile : Profile;