ExportMacProgram.cs 497 B

12345678910111213141516171819
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Text;
  6. namespace DllEapEntity.Dtos
  7. {
  8. [AutoMap(typeof(MacProgramDto))]
  9. public class ExportMacProgram
  10. {
  11. [Description(" 机型代码 ")]
  12. public string MacModelCode { get; set; }
  13. [Description("机型名称 ")]
  14. public string MacModelName { get; set; }
  15. [Description("程序名称 ")]
  16. public string ProgramName { get; set; }
  17. }
  18. }