//------------------------------------------------------------------------------ // // 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. // //------------------------------------------------------------------------------ namespace Neo.Afx.Admin.Crm { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class QueryType { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public QueryType() { this.Queries = new HashSet(); } public short QueryTypeID { get; set; } public string Description { get; set; } public short DefaultAssignedToUserRoleID { get; set; } public short DefaultEscalatedToUserRoleID { get; set; } public int MessageTemplateID { get; set; } public string CustomPostScript { get; set; } public bool IsCancelled { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Queries { get; set; } } }