Project/Project.Application/DTOs/Outgoing/ReadingProductDto.cs
2024-06-28 15:15:15 +02:00

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; }
}
}