15 lines
453 B
C#
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; }
|
|
}
|
|
} |