23 lines
513 B
C#
23 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AbazovViewComponents.LogicalComponents
|
|
{
|
|
public class ExcelImageInfo
|
|
{
|
|
public ExcelImageInfo(string path, string title, string[] imagePaths)
|
|
{
|
|
this.path = path;
|
|
this.title = title;
|
|
this.imagePaths = imagePaths;
|
|
}
|
|
|
|
public string path;
|
|
public string title;
|
|
public string[] imagePaths;
|
|
}
|
|
}
|