11 lines
276 B
C#
11 lines
276 B
C#
namespace Project.Application.DTOs.Outgoing
|
|
{
|
|
public class ReadingProductDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
public ReadingCategoryDto? Category { get; set; }
|
|
}
|
|
}
|