Spaces:
Paused
Paused
| using Entities.Enums; | |
| namespace Application.DTOs.OrderDTOs | |
| { | |
| public class AdminUpdateOrderDTO | |
| { | |
| public int Id { get; set; } | |
| public string? Name { get; set; } | |
| public string? Description { get; set; } | |
| public double? Weight { get; set; } | |
| public decimal? ProductPrice { get; set; } | |
| public bool? IsProductPaid { get; set; } | |
| public OrderStatus? Status { get; set; } | |
| } | |
| } | |