29 lines
871 B
C#
29 lines
871 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class Subscriptions
|
|
{
|
|
public Subscriptions()
|
|
{
|
|
Institutes = new HashSet<Institutes>();
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public int InstituteId { get; set; }
|
|
public int PlanId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { 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 Institutes Institute { get; set; }
|
|
public virtual Plans Plan { get; set; }
|
|
public virtual ICollection<Institutes> Institutes { get; set; }
|
|
}
|
|
}
|