123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Response
- {
-
-
-
- public class QueueOrderResponseDto
- {
-
-
-
- public string OrderId { set; get; } = string.Empty;
-
-
-
- public decimal TotalPrice { set; get; }
-
-
-
- public string Name { set; get; } = string.Empty;
-
-
-
- public string Code { set; get; } = string.Empty;
-
-
-
- public string Img { set; get; } = string.Empty;
-
-
-
- public decimal Price { set; get; }
-
-
-
- public int Count { set; get; }
- }
- }
|