aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IModuleData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/IModuleData.cs')
-rw-r--r--src/Model/IModuleData.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Model/IModuleData.cs b/src/Model/IModuleData.cs
new file mode 100644
index 0000000..c41a76b
--- /dev/null
+++ b/src/Model/IModuleData.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file