zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/AutoMapper/TeantsProfile.cs
2023-12-05 17:22:48 +08:00

16 lines
443 B
C#

using AutoMapper;
using ZeroFramework.DeviceCenter.Application.Models.Tenants;
using ZeroFramework.DeviceCenter.Domain.Aggregates.TenantAggregate;
namespace ZeroFramework.DeviceCenter.Application.AutoMapper
{
public class TeantsProfile : Profile
{
public TeantsProfile()
{
CreateMap<Tenant, TenantGetResponseModel>();
CreateMap<TenantCreateOrUpdateRequestModel, Tenant>();
}
}
}