26 lines
838 B
C#
26 lines
838 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace OnlineAssessment.Domain.Models
|
|||
|
|
{
|
|||
|
|
public partial class OrderPayment
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
public int PgOrderId { get; set; }
|
|||
|
|
public int UserId { get; set; }
|
|||
|
|
public int PlanId { get; set; }
|
|||
|
|
public int Price { get; set; }
|
|||
|
|
public string Status { 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 Plans Plan { get; set; }
|
|||
|
|
public virtual Users UpdatedByNavigation { get; set; }
|
|||
|
|
public virtual Users User { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|