naming
This commit is contained in:
@@ -24,6 +24,6 @@ namespace Webshop.Application.DTOs.Products
|
||||
public DateTimeOffset? LastModifiedDate { get; set; }
|
||||
public Guid? SupplierId { get; set; }
|
||||
public decimal? PurchasePrice { get; set; }
|
||||
public List<Guid> CategoryIds { get; set; } = new List<Guid>();
|
||||
public List<Guid> categorieIds { get; set; } = new List<Guid>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs.Categorys;
|
||||
using Webshop.Application.DTOs.categories;
|
||||
|
||||
|
||||
namespace Webshop.Application.DTOs.Products
|
||||
@@ -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<CategoryDto> categorys { get; set; } = new List<CategoryDto>();
|
||||
public List<categorieDto> categories { get; set; } = new List<categorieDto>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user