aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IFeedManager.cs
blob: 7f564494bab8cfdab407dc3fb5783f7c984a089b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace VNLib.Tools.Build.Executor.Model
{
    public interface IFeedManager
    {
        /// <summary>
        /// Adds taskfile variables for the feed manager
        /// </summary>
        /// <param name="vars">The taskfile variable container</param>
        void AddVariables(TaskfileVars vars);

        /// <summary>
        /// The output directory of the feed
        /// </summary>
        string FeedOutputDir { get; }
    }
}