LicenseSubscriptionDetail.cs
1.3 KB
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AIAHTML5.ADMIN.API.Entity
{
using System;
using System.Collections.Generic;
public partial class LicenseSubscriptionDetail
{
public int Id { get; set; }
public int LicenseId { get; set; }
public Nullable<short> SubscriptionPlanId { get; set; }
public Nullable<System.DateTime> SubscriptionValidFrom { get; set; }
public Nullable<System.DateTime> SubscriptionValidThrough { get; set; }
public Nullable<System.DateTime> RenewalDate { get; set; }
public string PaymentMode { get; set; }
public decimal TotalAmount { get; set; }
public decimal AmountPaid { get; set; }
public decimal AmountPending { get; set; }
public Nullable<int> NoofImages { get; set; }
public virtual License License { get; set; }
public virtual SubscriptionPlan SubscriptionPlan { get; set; }
}
}