27 lines
690 B
C#
27 lines
690 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Host.Models
|
|
{
|
|
public class TaoBaoRefundModel
|
|
{
|
|
public string RefundId { get; set; }
|
|
public string BuyerNick { get; set; }
|
|
public string RefundFee { get; set; }
|
|
public string Oid { get; set; }
|
|
public string Tid { get; set; }
|
|
public string RefundPhase { get; set; }
|
|
public string BillType { get; set; }
|
|
public string SellerNick { get; set; }
|
|
public string Modified { get; set; }
|
|
public string Phone { get; set; }
|
|
public int status { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|