12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class test_paper_question_set
- {
-
-
-
- public decimal test_paper_question_set_id { get; set; }
-
-
-
- public Nullable<decimal> test_paper_id { get; set; }
-
-
-
- public string questionXml { get; set; }
-
-
-
- public Nullable<int> order { get; set; }
-
-
-
-
- public virtual test_paper test_paper { get; set; }
- }
- }
|