sozsoft-platform/api/modules/Sozsoft.SqlQueryManager/Sozsoft.SqlQueryManager.Application/SqlQueryManagerAutoMapperProfile.cs
2026-03-02 21:31:49 +03:00

12 lines
305 B
C#

using AutoMapper;
namespace Sozsoft.SqlQueryManager.Application;
// No entity-to-DTO mappings needed; SQL objects are no longer persisted in this module.
public class SqlQueryManagerAutoMapperProfile : Profile
{
public SqlQueryManagerAutoMapperProfile()
{
// intentionally empty
}
}