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