using System.Collections.Generic; namespace Commerce.Contracts.DTOs; public class TechnicalDetail { public string Key { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; }