using System; using System.Collections.Generic; namespace OnlineAssessment.Domain.Models { public partial class Plans { public Plans() { Subscriptions = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } public DateTime? CreatedOn { get; set; } public DateTime? UpdatedOn { get; set; } public bool? IsActive { get; set; } public virtual ICollection Subscriptions { get; set; } } }