12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class test_question_provid_answer
- {
-
-
-
- public decimal provid_answer_id { get; set; }
-
-
-
- public string answer_name { get; set; }
-
-
-
- public Nullable<int> order { get; set; }
-
-
-
- public Nullable<decimal> file_id { get; set; }
-
-
-
- public Nullable<decimal> test_question_Id { get; set; }
-
-
-
- public string created_by { get; set; }
-
-
-
- public Nullable<System.DateTime> created_date { get; set; }
-
-
-
- public bool filled { get; set; }
-
-
-
- public Nullable<System.DateTime> time_of_filling { get; set; }
-
-
-
-
- public virtual test_question test_question { get; set; }
-
-
-
- public virtual test_question_file test_question_file { get; set; }
- }
- }
|