12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel.MTN
- {
- public class AlarmShadowRecordModel : BaseViewModel
- {
- public string C_ID { get; set; }
- public string C_PushMsgResultCode { get; set; }
- public string C_RecordUrl { get; set; }
- public string C_Type { get; set; }
- public string C_CameraServiceType { get; set; }
- public string C_CameraServiceTypeName { get; set; }
- public string C_DevStoreCode { get; set; }
- public string C_CameraCode { get; set; }
- public string C_CameraName { get; set; }
- public string C_Value { get; set; }
- }
- }
|