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

namespace RhSolutions.PriceListTools
{
    internal abstract class AbstractPriceList
    {
        public Range AmountCell { get; protected set; }
        public Range SkuCell { get; protected set; }
        public Range GroupCell { get; protected set; }
        public Range NameCell { get; protected set; }

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