practicekea_backend/microservices/_layers/domain/Models2/Plans.cs

25 lines
676 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
namespace OnlineAssessment.Domain.Models
{
public partial class Plans
{
public Plans()
{
Subscriptions = new HashSet<Subscriptions>();
}
public int Id { 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 ICollection<Subscriptions> Subscriptions { get; set; }
}
}