1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Response
- {
-
-
-
- public class OrderResponseDto
- {
-
-
-
- public string OrderId { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public string QrCode { get; set; }
- }
- }
|