|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Enum
- {
- /// <summary>
- /// 定位类型
- /// </summary>
- public enum LocationType
- {
- GPS = 1,
- LBS = 2,
- WIFI = 3,
- WifiPlus = 4
- }
- }
|