using ClosedXML.Excel;

namespace AsbCloudInfrastructure.Services.DrillingProgram
{
#nullable enable
    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; }
    }
#nullable disable
}