Clean up
This commit is contained in:
16
src/Imprink.Application/Products/Dtos/ProductDto.cs
Normal file
16
src/Imprink.Application/Products/Dtos/ProductDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Imprink.Application.Products.Dtos;
|
||||
|
||||
public class ProductDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Name { get; set; } = null!;
|
||||
public string? Description { get; set; }
|
||||
public decimal BasePrice { get; set; }
|
||||
public bool IsCustomizable { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
public string? ImageUrl { get; set; }
|
||||
public Guid? CategoryId { get; set; }
|
||||
public CategoryDto? Category { get; set; }
|
||||
public DateTime? CreatedAt { get; set; }
|
||||
public DateTime? ModifiedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user