20 lines
382 B
C#
20 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class AliOrderResult
|
|
{
|
|
public string Body { get; set; }
|
|
|
|
public int CustomerId { get; set; }
|
|
|
|
public string PayType { get; set; }
|
|
|
|
public bool Success { get; set; }
|
|
|
|
public string out_trade_no { get; set; }
|
|
}
|
|
}
|