Files
PracticeCalendar/PracticeCalendar.Application/Products/Queries/ProductDto.cs
T
2022-10-18 00:03:51 +03:00

13 lines
425 B
C#

using PracticeCalendar.Domain.ValueObjects;
namespace PracticeCalendar.Application.Products.Queries
{
public class ProductDto
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Category { get; set; } = string.Empty;
public decimal UnitPrice { get; set; }
public string UnitPriceCurrency { get; set; } = Price.DEFAULT_CURRENCY;
}
}