|
12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Enum
- {
- public enum IdType
- {
- Unknown = 0,
- Sos = 1,
- PayLog = 2,
- Temperature = 3
- }
- }
|