1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //------------------------------------------------------------------------------
- // <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>
- /// ExamSetting_Examiner
- /// </summary>
- public partial class ExamSetting_Examiner
- {
- /// <summary>
- /// ID
- /// </summary>
- public long ID { get; set; }
- /// <summary>
- /// onlinetest_id
- /// </summary>
- public Nullable<decimal> onlinetest_id { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public string UserID { get; set; }
- /// <summary>
- /// UserName
- /// </summary>
- public string UserName { get; set; }
- /// <summary>
- /// UserType
- /// </summary>
- public Nullable<int> UserType { get; set; }
- /// <summary>
- /// filled
- /// </summary>
- public bool filled { get; set; }
- /// <summary>
- /// time_of_filling
- /// </summary>
- public Nullable<System.DateTime> time_of_filling { get; set; }
- }
- }
|