OnsemiProgramDto.cs 486 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.Dtos
  5. {
  6. public class OnsemiProgramDto
  7. {
  8. public string Name { get; set; }
  9. public string Path { get; set; }
  10. public string State { get; set; }
  11. }
  12. public class FileDto
  13. {
  14. public string Ext { get; set; }
  15. public string FileName { get; set; }
  16. public string UNCPath { get; set; }
  17. public byte[] FileBytes { get; set; }
  18. }
  19. }