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

namespace RhSolutions.Models
{
    internal abstract class PriceListBase
    {
        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; }
    }
}