RhSolutions-AddIn/src/PriceListTools/AbstractPriceList.cs

15 lines
465 B
C#
Raw Normal View History

2021-12-24 16:22:03 +03:00
using Microsoft.Office.Interop.Excel;
2022-12-19 20:25:35 +03:00
namespace RhSolutions.PriceListTools
2021-12-24 16:22:03 +03:00
{
2022-02-02 18:03:49 +03:00
internal abstract class AbstractPriceList
2021-12-24 16:22:03 +03:00
{
2022-02-12 16:53:34 +03:00
public Range AmountCell { get; protected set; }
public Range SkuCell { get; protected set; }
public Range GroupCell { get; protected set; }
public Range NameCell { get; protected set; }
2022-01-26 18:17:44 +03:00
2022-01-27 09:59:33 +03:00
public Worksheet Sheet { get; protected set; }
public string Name { get; protected set; }
2021-12-24 16:22:03 +03:00
}
2022-01-27 09:59:33 +03:00
}