PIbd-32_Chubykina_P.P._COP_11/COP/Components/LogicalComponents/ExcelImageInfo.cs

23 lines
503 B
C#
Raw Normal View History

2024-09-30 20:14:34 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Components.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;
}
}