mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 07:01:16 +03:00
13 lines
425 B
C#
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;
|
|
}
|
|
} |