8 changed files with 98 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
|
|||
namespace EShopOnAbp.OrderingService.Orders; |
|||
|
|||
public class OrderStatusDto : EntityDto<Guid> |
|||
{ |
|||
public int CountOfStatusOrder { get; set; } |
|||
public string OrderStatus { get; set; } |
|||
public int OrderStatusId { get; set; } |
|||
} |
|||
@ -0,0 +1,7 @@ |
|||
namespace EShopOnAbp.OrderingService.Orders |
|||
{ |
|||
public class OrderStatusInput |
|||
{ |
|||
public string Filter { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue