Files
kami_itunes_june/AppleBatch_June.Model/PurchaseLineItems.cs
2024-07-22 00:43:14 +08:00

20 lines
339 B
C#

namespace AppleBatch_June.Model
{
public class PurchaseLineItems
{
public string extra { get; set; }
public string total { get; set; }
public string title { get; set; }
public string dataT { get; set; }
public string currency { get; set; }
public decimal money { get; set; }
public string monetary { get; set; }
}
}