Projektdateien hinzufügen.
This commit is contained in:
12
Webshop.Application/DTOs/ProductDto.cs
Normal file
12
Webshop.Application/DTOs/ProductDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user