2024-07-04 11:02:45 +05:00
|
|
|
using ClosedXML.Excel;
|
2022-02-12 11:28:16 +05:00
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudInfrastructure.Services.DrillingProgram;
|
2023-04-18 16:22:53 +05:00
|
|
|
|
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
class ImageInfo
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public byte[] Data { get; set; } = null!;
|
|
|
|
public int Height { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
public IXLAddress TopLeftCellAddress { get; set; } = null!;
|
|
|
|
public int Left { get; set; }
|
|
|
|
public int Top { get; set; }
|
2022-02-12 11:28:16 +05:00
|
|
|
}
|