10 lines
210 B
C#
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;
|
|
}
|