shopping-assistant-api/ShoppingAssistantApi.Application/Models/CreateDtos/ProductCreateDto.cs

19 lines
450 B
C#

namespace ShoppingAssistantApi.Application.Models.CreateDtos;
public class ProductCreateDto
{
public required string Url { get; set; }
public required string Name { get; set; }
public required string Description { get; set; }
public required double Rating { get; set; }
public required string[] ImagesUrls { get; set; }
public required bool WasOpened { get; set; }
public required string WishlistId { get; set; }
}