1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //------------------------------------------------------------------------------
- // <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>
- /// test_keyword
- /// </summary>
- public partial class test_keyword
- {
- public test_keyword()
- {
- this.test_question_keyword = new HashSet<test_question_keyword>();
- }
-
- /// <summary>
- /// test_keyword_id
- /// </summary>
- public decimal test_keyword_id { get; set; }
- /// <summary>
- /// name
- /// </summary>
- public string name { get; set; }
- /// <summary>
- /// other_vaild_values
- /// </summary>
- public string other_vaild_values { get; set; }
-
- /// <summary>
- /// test_question_keyword
- /// </summary>
- public virtual HashSet<test_question_keyword> test_question_keyword { get; set; }
- }
- }
|