Files
ShopSolution-backend/Webshop.Application/DTOs/ProductDto.cs
2025-07-21 20:17:52 +02:00

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