using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Fuel01 { public class TdfFile { public string Name { get; set; } = string.Empty; public byte[] Data { get; set; } = new byte[0]; } }