123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- public class OnsemiProgramDto
- {
- public string Name { get; set; }
- public string Path { get; set; }
- public string State { get; set; }
- }
- public class FileDto
- {
- public string Ext { get; set; }
- public string FileName { get; set; }
- public string UNCPath { get; set; }
- public byte[] FileBytes { get; set; }
- }
- }
|