12345678910111213141516171819202122 |
- 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; }
- }
- }
|