//------------------------------------------------------------------------------ // // 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 EMISOnline.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// ExamPaper /// public partial class ExamPaper { /// /// ID /// public System.Guid ID { get; set; } /// /// user_id /// public string user_id { get; set; } /// /// onlinetest_id /// public decimal onlinetest_id { get; set; } /// /// Sign /// public Nullable Sign { get; set; } /// /// test_questions_Id /// public decimal test_questions_Id { get; set; } /// /// display_order /// public Nullable display_order { get; set; } /// /// answer_order /// public string answer_order { get; set; } /// /// base_question_type_id /// public decimal base_question_type_id { get; set; } /// /// filled /// public bool filled { get; set; } /// /// time_of_filling /// public Nullable time_of_filling { get; set; } } }