sozsoft-platform/api/modules/Sozsoft.SqlQueryManager/Sozsoft.SqlQueryManager.Application/SqlQueryManagerAutoMapperProfile.cs

13 lines
305 B
C#
Raw Normal View History

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