This commit is contained in:
Tizian.Breuch
2025-08-01 15:17:14 +02:00
parent 90171fffa2
commit 4dfc50d572
9 changed files with 24 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Webshop.Application.DTOs.categories
{
public class categorieDto
public class CategorieDto
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;

View File

@@ -19,6 +19,6 @@ namespace Webshop.Application.DTOs.Products
public int StockQuantity { get; set; }
public string? ImageUrl { get; set; }
public string Slug { get; set; } = string.Empty;
public List<categorieDto> categories { get; set; } = new List<categorieDto>();
public List<CategorieDto> categories { get; set; } = new List<CategorieDto>();
}
}