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