123456789101112131415161718192021222324252627282930313233343536373839 |
- //------------------------------------------------------------------------------
- // <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_question_keyword
- /// </summary>
- public partial class test_question_keyword
- {
- /// <summary>
- /// test_question_keyword_id
- /// </summary>
- public decimal test_question_keyword_id { get; set; }
- /// <summary>
- /// test_question_Id
- /// </summary>
- public Nullable<decimal> test_question_Id { get; set; }
- /// <summary>
- /// test_keyword_id
- /// </summary>
- public Nullable<decimal> test_keyword_id { get; set; }
-
- /// <summary>
- /// test_keyword
- /// </summary>
- public virtual test_keyword test_keyword { get; set; }
- }
- }
|