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

15 lines
408 B
C#

using AutoMapper;
using ZeroFramework.DeviceCenter.Application.Models.Measurements;
using ZeroFramework.DeviceCenter.Domain.Aggregates.MeasurementAggregate;
namespace ZeroFramework.DeviceCenter.Application.AutoMapper
{
public class MeasurementsProfile : Profile
{
public MeasurementsProfile()
{
CreateMap<TelemetryAggregate, DevicePropertyReport>();
}
}
}