DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/DrillingProgram/ImageInfo.cs

15 lines
384 B
C#
Raw Normal View History

using ClosedXML.Excel;
2024-08-19 10:01:07 +05:00
namespace AsbCloudInfrastructure.Services.DrillingProgram;
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; }
}