RhSolutions-AddIn/src/PriceListTools/PriceList.cs

18 lines
604 B
C#
Raw Normal View History

2021-12-24 16:22:03 +03:00
using Microsoft.Office.Interop.Excel;
namespace RehauSku.PriceListTools
{
2022-01-09 10:37:25 +03:00
internal class PriceList
2021-12-24 16:22:03 +03:00
{
2022-01-27 09:59:33 +03:00
protected const string amountHeader = "Кол-во";
protected const string skuHeader = "Актуальный материал";
protected const string groupHeader = "Программа";
2022-01-26 18:17:44 +03:00
2022-01-27 09:59:33 +03:00
public Range amountCell { get; protected set; }
public Range skuCell { get; protected set; }
public Range groupCell { get; protected set; }
2022-01-26 18:17:44 +03:00
2022-01-27 09:59:33 +03:00
public Worksheet Sheet { get; protected set; }
public string Name { get; protected set; }
2021-12-24 16:22:03 +03:00
}
2022-01-27 09:59:33 +03:00
}