RhSolutions-AddIn/RhSolutions.AddIn/Models/PriceListBase.cs
2023-03-22 08:36:13 +03:00

15 lines
453 B
C#

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; }
}
}