12 lines
384 B
C#
12 lines
384 B
C#
// src/Webshop.Application/DTOs/ProductDto.cs
|
|
namespace Webshop.Application.DTOs
|
|
{
|
|
public class ProductDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public decimal Price { get; set; }
|
|
public string Sku { get; set; } = string.Empty;
|
|
}
|
|
} |