//------------------------------------------------------------------------------
//
// 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_provid_answer
///
public partial class test_question_provid_answer
{
///
/// provid_answer_id
///
public decimal provid_answer_id { get; set; }
///
/// answer_name
///
public string answer_name { get; set; }
///
/// order
///
public Nullable order { get; set; }
///
/// file_id
///
public Nullable file_id { get; set; }
///
/// test_question_Id
///
public Nullable test_question_Id { get; set; }
///
/// created_by
///
public string created_by { get; set; }
///
/// created_date
///
public Nullable created_date { get; set; }
///
/// filled
///
public bool filled { get; set; }
///
/// time_of_filling
///
public Nullable time_of_filling { get; set; }
///
/// test_question
///
public virtual test_question test_question { get; set; }
///
/// test_question_file
///
public virtual test_question_file test_question_file { get; set; }
}
}