19 lines
524 B
C#
19 lines
524 B
C#
|
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<ImageInfo>? images { get; set; }
|
|||
|
|
|||
|
public ExcelImageInfo (string? fileName, string? documentTitle, List<ImageInfo>? images)
|
|||
|
{
|
|||
|
this.fileName = fileName;
|
|||
|
this.documentTitle = documentTitle;
|
|||
|
this.images = images;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|