//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
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 SubscriptionPlanId { get; set; }
public Nullable SubscriptionValidFrom { get; set; }
public Nullable SubscriptionValidThrough { get; set; }
public Nullable 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 NoofImages { get; set; }
public virtual License License { get; set; }
public virtual SubscriptionPlan SubscriptionPlan { get; set; }
}
}