12 lines
274 B
C#
12 lines
274 B
C#
using Project.Domain.Entities;
|
|
|
|
namespace Project.Application.DTOs.Incoming
|
|
{
|
|
public class CreatingProductDto
|
|
{
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public CreatingCategoryDto? Category { get; set; }
|
|
}
|
|
}
|