PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AbazovViewComponents/LogicalComponents/ExcelImageInfo.cs

23 lines
513 B
C#
Raw Normal View History

2023-10-20 09:34:18 +04:00
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;
}
}