13 lines
341 B
C#
13 lines
341 B
C#
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class EpayResponse
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public string trade_no { get; set; }
|
|
public string? payurl { get; set; }
|
|
public string? qrcode { get; set; }
|
|
public string? urlscheme { get; set; }
|
|
}
|
|
}
|