27 lines
757 B
C#
27 lines
757 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class States
|
|||
|
|
{
|
|||
|
|
public States()
|
|||
|
|
{
|
|||
|
|
Institutes = new HashSet<Institutes>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public string Code { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public int? LanguageId { get; set; }
|
|||
|
|
public DateTime? CreatedOn { get; set; }
|
|||
|
|
public int CreatedBy { get; set; }
|
|||
|
|
public DateTime UpdatedOn { get; set; }
|
|||
|
|
public int UpdatedBy { get; set; }
|
|||
|
|
public bool? IsActive { get; set; }
|
|||
|
|
|
|||
|
|
public virtual Languages Language { get; set; }
|
|||
|
|
public virtual ICollection<Institutes> Institutes { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|