namespace TakeoutSaaS.Application.App.Mini.Contracts; /// /// 创建订单结果。 /// 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; } }