2026-02-24 20:44:16 +00:00
|
|
|
using AutoMapper;
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.SqlQueryManager.Application;
|
|
|
|
|
|
2026-03-02 18:31:49 +00:00
|
|
|
// 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()
|
|
|
|
|
{
|
2026-03-02 18:31:49 +00:00
|
|
|
// intentionally empty
|
2026-02-24 20:44:16 +00:00
|
|
|
}
|
|
|
|
|
}
|