1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity
- {
-
-
-
- public class RequestFirmware: ResBaseModel
- {
-
-
-
- public string appVersion { get; set; }
-
-
-
- public string modelType { get; set; }
-
-
-
- public string firmwareType { get; set; }
-
-
-
- public string firmwareVersion { get; set; }
- }
-
-
-
- public class FirmwareModel
- {
-
-
-
- public string VersionName { get; set; }
-
-
-
- public string FileName { get; set; }
-
-
-
- public string firmwareType { get; set; }
-
-
-
- public int VersionNo { get; set; }
- }
- }
|