1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class test_keyword
- {
- public test_keyword()
- {
- this.test_question_keyword = new HashSet<test_question_keyword>();
- }
-
-
-
-
- public decimal test_keyword_id { get; set; }
-
-
-
- public string name { get; set; }
-
-
-
- public string other_vaild_values { get; set; }
-
-
-
-
- public virtual HashSet<test_question_keyword> test_question_keyword { get; set; }
- }
- }
|