using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.Entities { public class TMTN_AlarmShadowRecord { [Key] 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_CameraCode { get; set; } public string C_DevStoreCode { get; set; } } }