//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
namespace EMISOnline.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// test_question_file
///
public partial class test_question_file
{
public test_question_file()
{
this.test_question = new HashSet();
this.test_question_provid_answer = new HashSet();
}
///
/// file_id
///
public decimal file_id { get; set; }
///
/// url
///
public string url { get; set; }
///
/// width
///
public Nullable width { get; set; }
///
/// height
///
public Nullable height { get; set; }
///
/// note
///
public string note { get; set; }
///
/// created_by
///
public string created_by { get; set; }
///
/// created_date
///
public Nullable created_date { get; set; }
///
/// test_question
///
public virtual HashSet test_question { get; set; }
///
/// test_question_provid_answer
///
public virtual HashSet test_question_provid_answer { get; set; }
}
}