using System.Collections.Generic; namespace DeclarationAutomatization.Models; public class CodeLookupEntry { public string TnVed { get; set; } = ""; // Список кодов (обычно 1, реже 2–3 при неоднозначности) public List Codes { get; set; } = new(); }