using static COP.ExcelComponent; namespace COP.Info { public class ExcelImageInfo { public string? fileName { get; set; } = string.Empty; public string? documentTitle { get; set; } = string.Empty; public List? images { get; set; } public ExcelImageInfo (string? fileName, string? documentTitle, List? images) { this.fileName = fileName; this.documentTitle = documentTitle; this.images = images; } } }