namespace CartWise.Application.DTOs; public class ProductLookupResult { public string Name { get; init; } = string.Empty; public string? BrandName { get; init; } public decimal? SizeValue { get; init; } public string? SizeUnit { get; init; } public string? ImageUrl { get; init; } public string SourceName { get; init; } = string.Empty; public string? SourceExternalId { get; init; } }