10 lines
291 B
C#
10 lines
291 B
C#
|
|
namespace PetWash.Api.Models;
|
||
|
|
|
||
|
|
public sealed class CreateOrderResponse
|
||
|
|
{
|
||
|
|
public required Order Order { get; init; }
|
||
|
|
public string CodeUrl { get; init; } = string.Empty;
|
||
|
|
public string OutTradeNo { get; init; } = string.Empty;
|
||
|
|
public DateTimeOffset? ExpiresAt { get; init; }
|
||
|
|
}
|