zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/AutoMapper/MeasurementsProfile.cs

15 lines
408 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
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>();
}
}
}