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

23 lines
588 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 DateTime? UpdatedOn { get; set; }
public bool? IsActive { get; set; }
public virtual ICollection<Subscriptions> Subscriptions { get; set; }
}
}