aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IModuleData.cs
blob: c41a76b94cab49e41d631fca8c99e2c73da59598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections.Generic;

using LibGit2Sharp;

namespace VNLib.Tools.Build.Executor.Model
{
    public interface IModuleData
    {
        ICollection<IProject> Projects { get; }

        string ModuleName { get; }

        Repository Repository { get; }

        TaskfileVars TaskVars { get; }

        IModuleFileManager FileManager { get; }
    }
}