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
/
Edit File Name :
GalleryAlbum.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 GalleryAlbum { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public GalleryAlbum() { this.Galleries = new HashSet<Gallery>(); } public int AlbumID { get; set; } [DisplayName("Name")] [Required(ErrorMessage = "Title is required")] [StringLength(100)] public string AlbumName { get; set; } public string AlbumDescription { get; set; } public Nullable<System.DateTime> AlbumPublishDate { get; set; } public string AlbumImageURL { 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; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection<Gallery> Galleries { get; set; } } }
Save