0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-api.git synced 2025-06-29 18:21:11 +00:00
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; }
}