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