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 TenantManagementMappingProfile : Profile { public TenantManagementMappingProfile() { CreateMap(); CreateMap(); CreateMap(); } }