|
123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Enum
- {
- [Flags]
- public enum RealtimeLocationTypeFlag
- {
- None = 0,
- Gps = 1 << 1,
- Lbs = 1 << 2,
- Wifi = 1 << 3,
- All = 1 << 4 - 1
- }
- }
|