using AutoMapper; using TenantManagement.Api.DDD.Contracts.Dtos; using TenantManagement.Api.DDD.Contracts.Inputs; using TenantManagement.Api.DDD.Domain.Entites; namespace TenantManagement.Api.DDD.Contracts; public class TenantManagementDomainMappingProfile : Profile { public TenantManagementDomainMappingProfile() { CreateMap(); CreateMap(); CreateMap(); } }