PaymentTransactionDetail.cs
1.28 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 PaymentTransactionDetail
{
public int Id { get; set; }
public string TransactionId { get; set; }
public string EditionId { get; set; }
public string SubscriptionPlanId { get; set; }
public string UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Zip { get; set; }
public string Country { get; set; }
public string Email { get; set; }
public decimal Amount { get; set; }
public System.DateTime PurchaseDate { get; set; }
public string PaymentStatus { get; set; }
}
}