12 lines
305 B
C#
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
|
|
}
|
|
}
|