namespace LittleShop.Client.Models; public class Product { public Guid Id { get; set; } public string Name { get; set; } = string.Empty; public string? Description { get; set; } public decimal Price { get; set; } public decimal Weight { get; set; } public string WeightUnit { get; set; } = string.Empty; public Guid CategoryId { get; set; } public string? CategoryName { get; set; } public bool IsActive { get; set; } public List Photos { get; set; } = new(); public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } } public class ProductPhoto { public Guid Id { get; set; } public string Url { get; set; } = string.Empty; public string? AltText { get; set; } public int SortOrder { get; set; } }