BaseWorker.cs

23 lines | 427 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using NodeStarterTools.SolutionPaths;

namespace NodeStarterTools.BuildWorker
{
    public abstract class BaseWorker
    {
        protected readonly Config Config;

        public BaseWorker(Config Config)
        {
            this.Config = Config;
        }

        public abstract void Work();
    }
}