Files
2026-08-05 21:15:15 +03:00

10 lines
210 B
C#

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;
}