|
12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.Biz.Location.Dto
- {
- public class RequestLocationInfo<T>
- {
-
-
-
-
-
-
-
-
-
- public int MapSource { get; set; }
-
- public int RequestLocationType { get; set; }
-
-
-
- public T RequestData { get; set; }
- }
- }
|