You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
474 B
C#
16 lines
474 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace TradeManageNew.Models.ShopifyUsedSale
|
|
{
|
|
public partial class CancelShopifyUsedSaleOrderDto
|
|
{
|
|
[JsonProperty("orderId")] public string OrderId { get; set; }
|
|
|
|
[JsonProperty("orderNumber")] public string OrderNumber { get; set; }
|
|
|
|
[JsonProperty("cancelDate")] public DateTimeOffset CancelDate { get; set; }
|
|
|
|
[JsonProperty("cancelReason")] public string CancelReason { get; set; }
|
|
}
|
|
} |