using System.Collections.Generic; namespace FwFonts.Models { public class FirmweareDescriptor { public string Version { get; set; } public Dictionary Fonts { get; set; } = new Dictionary(); } }