using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispSpotsUsersViewModel : BaseViewModel { public string C_Remark { get; set; } public Guid C_SpotID { get; set; } public string C_SpotName { get; set; } public string C_Number { get; set; } public string C_GPS { get; set; } public string C_Position { get; set; } public string C_QRCode { get; set; } public Guid C_UserID { get; set; } public string C_UserName { get; set; } } }