aboutsummaryrefslogtreecommitdiff
path: root/src/Interface/AbstractBar.cs
blob: c5918a8a2c2523552f4a0669772a4112cb05fe57 (plain)
1
2
3
4
5
6
7
8
9
10
11
using Microsoft.Office.Interop.Excel;

namespace RehauSku.Interface
{
    internal abstract class AbstractBar
    {
        protected Application Excel = AddIn.Excel;

        public abstract void Update();
    }
}