1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------------------------
- // <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_administrator
- /// </summary>
- public partial class test_question_administrator
- {
- /// <summary>
- /// test_question_administrator_id
- /// </summary>
- public decimal test_question_administrator_id { get; set; }
- /// <summary>
- /// test_question_libary_id
- /// </summary>
- public Nullable<decimal> test_question_libary_id { get; set; }
- /// <summary>
- /// userid
- /// </summary>
- public string userid { get; set; }
- /// <summary>
- /// username
- /// </summary>
- public string username { get; set; }
- }
- }
|