程序下载的配置

This commit is contained in:
2025-02-26 12:22:12 +08:00
parent d2ef6f9961
commit b9bde07d6b
10 changed files with 684 additions and 214 deletions

View File

@@ -0,0 +1,14 @@
using AutoMapper;
using CapMachine.Model;
using CapMachine.Wpf.Dtos;
namespace CapMachine.Wpf.MapperProfile
{
public class ConfigAlarmProfile : Profile
{
public ConfigAlarmProfile()
{
CreateMap<ConfigAlarm, ConfigAlarmDto>().ReverseMap();
}
}
}