//------------------------------------------------------------------------------ // <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> /// CourseworkAnswer /// </summary> public partial class CourseworkAnswer { /// <summary> /// ID /// </summary> public decimal ID { get; set; } /// <summary> /// workid /// </summary> public Nullable<decimal> workid { get; set; } /// <summary> /// user_id /// </summary> public string user_id { get; set; } /// <summary> /// resultXml /// </summary> public string resultXml { get; set; } /// <summary> /// Coursework /// </summary> public virtual Coursework Coursework { get; set; } } }