13 lines
300 B
C#
13 lines
300 B
C#
using Project.Application.DTOs.Outgoing;
|
|
using Project.Domain.Entities;
|
|
|
|
namespace Project.Application.DTOs.Incoming
|
|
{
|
|
public class CreatingProductDto
|
|
{
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public int CategoryId { get; set; }
|
|
}
|
|
}
|