12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //------------------------------------------------------------------------------
- // <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_paper_question_set
- /// </summary>
- public partial class test_paper_question_set
- {
- /// <summary>
- /// test_paper_question_set_id
- /// </summary>
- public decimal test_paper_question_set_id { get; set; }
- /// <summary>
- /// test_paper_id
- /// </summary>
- public Nullable<decimal> test_paper_id { get; set; }
- /// <summary>
- /// questionXml
- /// </summary>
- public string questionXml { get; set; }
- /// <summary>
- /// order
- /// </summary>
- public Nullable<int> order { get; set; }
-
- /// <summary>
- /// test_paper
- /// </summary>
- public virtual test_paper test_paper { get; set; }
- }
- }
|