|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Context
- {
- public class DeviceStatus : ContextBase
- {
-
-
-
- public int? Singal { get; set; }
-
-
-
-
- public int? Satellite { get; set; }
-
-
-
-
- public int? Battery { get; set; }
-
-
-
-
- public int? Step { get; set; }
-
-
-
-
- public string Imsi { get; set; }
-
-
-
-
- public int? Online { get; set; }
- }
- }
|