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

17 lines
430 B
C#
Raw Normal View History

using ClosedXML.Excel;
namespace AsbCloudInfrastructure.Services.DrillingProgram
{
class ImageInfo
{
public int Id { get; set; }
2023-04-13 11:15:45 +05:00
public byte[] Data { get; set; } = null!;
public int Height { get; set; }
public int Width { get; set; }
2023-04-13 11:15:45 +05:00
public IXLAddress TopLeftCellAddress { get; set; } = null!;
public int Left { get; set; }
public int Top { get; set; }
}
}