forked from ddrilling/AsbCloudServer
15 lines
410 B
C#
15 lines
410 B
C#
|
using ClosedXML.Excel;
|
|||
|
|
|||
|
namespace AsbCloudInfrastructure.Services.DrillingProgram
|
|||
|
{
|
|||
|
class ImageInfo
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public byte[] Data { get; set; }
|
|||
|
public int Height { get; set; }
|
|||
|
public int Width { get; set; }
|
|||
|
public IXLAddress TopLeftCellAddress { get; set; }
|
|||
|
public int Left { get; set; }
|
|||
|
public int Top { get; set; }
|
|||
|
}
|
|||
|
}
|