mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-11 01:18:50 +00:00
19 lines
449 B
C#
19 lines
449 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 double Price { get; set; }
|
|
|
|
public required string[] ImagesUrls { get; set; }
|
|
|
|
public required bool WasOpened { get; set; }
|
|
}
|