aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/PriceListBase.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-12-20 11:53:55 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-12-20 11:53:55 +0300
commit36c4d4480d3789aface2e81371c9dd5ee84e874d (patch)
tree84b271b8f43c31c8aa9820cbf77345b4247377e9 /src/PriceListTools/PriceListBase.cs
parent84137845fd52083431088e63bfdd00913d9efdcd (diff)
Rename Abstract classes
Diffstat (limited to 'src/PriceListTools/PriceListBase.cs')
-rw-r--r--src/PriceListTools/PriceListBase.cs15
1 files changed, 15 insertions, 0 deletions
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