1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- //------------------------------------------------------------------------------
- // <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_file
- /// </summary>
- public partial class test_question_file
- {
- public test_question_file()
- {
- this.test_question = new HashSet<test_question>();
- this.test_question_provid_answer = new HashSet<test_question_provid_answer>();
- }
-
- /// <summary>
- /// file_id
- /// </summary>
- public decimal file_id { get; set; }
- /// <summary>
- /// url
- /// </summary>
- public string url { get; set; }
- /// <summary>
- /// width
- /// </summary>
- public Nullable<decimal> width { get; set; }
- /// <summary>
- /// height
- /// </summary>
- public Nullable<decimal> height { get; set; }
- /// <summary>
- /// note
- /// </summary>
- public string note { get; set; }
- /// <summary>
- /// created_by
- /// </summary>
- public string created_by { get; set; }
- /// <summary>
- /// created_date
- /// </summary>
- public Nullable<System.DateTime> created_date { get; set; }
-
- /// <summary>
- /// test_question
- /// </summary>
- public virtual HashSet<test_question> test_question { get; set; }
- /// <summary>
- /// test_question_provid_answer
- /// </summary>
- public virtual HashSet<test_question_provid_answer> test_question_provid_answer { get; set; }
- }
- }
|