aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/PriceList.cs
blob: 5ec870e5f3752e7e25cec263473d2850802403c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Microsoft.Office.Interop.Excel;

namespace RehauSku.PriceListTools
{
    internal class PriceList
    {
        protected const string amountHeader = "Кол-во";
        protected const string skuHeader = "Актуальный материал";
        protected const string groupHeader = "Программа";

        public Range amountCell { get; protected set; }
        public Range skuCell { get; protected set; }
        public Range groupCell { get; protected set; }

        public Worksheet Sheet { get; protected set; }
        public string Name { get; protected set; }
    }
}