mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
20 lines
339 B
C#
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; }
|
|
}
|
|
}
|