Files
TakeoutSaaS.C-Side-Mini-Pro…/src/Application/TakeoutSaaS.Application/App/Mini/Contracts/MiniCreateOrderResponse.cs
MSuMshk 227266d183
All checks were successful
Build and Deploy MiniApi / build-and-deploy (push) Successful in 23s
feat: add mini ordering catalog and order APIs
2026-03-10 10:03:32 +08:00

16 lines
556 B
C#

namespace TakeoutSaaS.Application.App.Mini.Contracts;
/// <summary>
/// 创建订单结果。
/// </summary>
public sealed class MiniCreateOrderResponse
{
public string OrderId { get; init; } = string.Empty;
public string OrderNo { get; init; } = string.Empty;
public string StatusText { get; init; } = string.Empty;
public string PaymentStatusText { get; init; } = string.Empty;
public decimal PayableAmount { get; init; }
public string PayableAmountText { get; init; } = "0.00";
public bool MockPayAvailable { get; init; }
}