2023-10-18 21:58:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace WinFormsLibrary.SupportClasses
|
|
|
|
|
{
|
|
|
|
|
public class ImageClass
|
|
|
|
|
{
|
|
|
|
|
private string path;
|
|
|
|
|
private string title;
|
2023-11-30 00:36:01 +04:00
|
|
|
|
private List<byte[]> files;
|
2023-10-18 21:58:51 +04:00
|
|
|
|
public string Path { get { return path; } set { path = value; } }
|
|
|
|
|
public string Title { get { return title; } set { title = value; } }
|
2023-11-30 00:36:01 +04:00
|
|
|
|
public List<byte[]> Files { get { return files; } set { files = value; } }
|
2023-10-18 21:58:51 +04:00
|
|
|
|
public ImageClass() { }
|
|
|
|
|
|
2023-11-30 00:36:01 +04:00
|
|
|
|
public ImageClass(string filePath, string documentTitle, List<byte[]> textData)
|
2023-10-18 21:58:51 +04:00
|
|
|
|
{
|
|
|
|
|
Path = filePath;
|
|
|
|
|
Title = documentTitle;
|
|
|
|
|
Files = textData;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|