Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
HRDC
/
HRDC
/
Models
/
View File Name :
EarthquakeResponse.cs
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace HRDC.Models { using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; public partial class EarthquakeResponse { public int EarthquakeResponseID { get; set; } [DisplayName("Title")] [Required(ErrorMessage = "Title is required")] [StringLength(100)] public string ResponseTitle { get; set; } public string ResponseImage { get; set; } [DisplayName("Description")] [Required(ErrorMessage = "Description is required")] [StringLength(100)] public string ResponseDescription { get; set; } [DisplayName("Detail")] [Required(ErrorMessage = "Detail is required")] public string ResponseDetail { get; set; } public Nullable<System.DateTime> ResponsePublishDate { get; set; } public Nullable<int> CreatedBy { get; set; } public Nullable<System.DateTime> CreatedDate { get; set; } public Nullable<int> UpdatedBy { get; set; } public Nullable<System.DateTime> UpdatedDate { get; set; } public string Tags { get; set; } public string Remarks { get; set; } public List<int> TagList { get; set; } } }