using MiniExcelLibs.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Models
{
///
/// 电机功率
///
public class MotorPowerModel
{
/*
电机型号 功率
*/
///
/// 电机型号
///
[ExcelColumn(Name = "电机型号")]
public string MotorModel { get; set; }
///
/// 电机型号
///
[ExcelColumn(Name = "电机功率数值")]
public int MotorPower { get; set; }
}
}