1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispSpotConfigureUpdateViewModel
- {
-
-
-
-
-
-
-
- public string C_QRCode { get; set; }
- public string C_GPS { get; set; }
-
-
-
- public int I_Offset { get; set; }
- public string C_ImageUrl { get; set; }
-
-
-
-
- public bool IsUpdateGPS { get; set; }
- }
- }
|