Rob / Application /DTOs /OrderDTOs /AdminUpdateOrderDTO.cs
danylokhodus's picture
fix
e7a18fe
Raw
History Blame Contribute Delete
433 Bytes
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; }
}
}