23 lines
756 B
C#
23 lines
756 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OnlineAssessment.Domain.Models
|
|
{
|
|
public partial class SubscribedPractices
|
|
{
|
|
public int Id { get; set; }
|
|
public int SubscriptionId { get; set; }
|
|
public int PracticeId { 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 Users CreatedByNavigation { get; set; }
|
|
public virtual Practices Practice { get; set; }
|
|
public virtual Subscriptions Subscription { get; set; }
|
|
public virtual Users UpdatedByNavigation { get; set; }
|
|
}
|
|
}
|