RhSolutions-AddIn/src/Interface/AbstractBar.cs

12 lines
218 B
C#
Raw Normal View History

2022-02-04 09:17:12 +03:00
using Microsoft.Office.Interop.Excel;
namespace RehauSku.Interface
{
internal abstract class AbstractBar
{
protected Application Excel = AddIn.Excel;
public abstract void Update();
}
}