Project/Project.Application/DTOs/Incoming/UpdatingProductDto.cs
2024-06-28 15:15:15 +02:00

17 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Project.Application.DTOs.Incoming
{
public class UpdatingProductDto
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public CreatingCategoryDto? Category { get; set; }
}
}