From 36c4d4480d3789aface2e81371c9dd5ee84e874d Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Tue, 20 Dec 2022 11:53:55 +0300 Subject: Rename Abstract classes --- src/PriceListTools/PriceListBase.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/PriceListTools/PriceListBase.cs (limited to 'src/PriceListTools/PriceListBase.cs') diff --git a/src/PriceListTools/PriceListBase.cs b/src/PriceListTools/PriceListBase.cs new file mode 100644 index 0000000..805cd04 --- /dev/null +++ b/src/PriceListTools/PriceListBase.cs @@ -0,0 +1,15 @@ +using Microsoft.Office.Interop.Excel; + +namespace RhSolutions.PriceListTools +{ + 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; } + } +} \ No newline at end of file -- cgit v1.2.3