aboutsummaryrefslogtreecommitdiff
path: root/src/Model/IModuleData.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-07 17:01:22 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-07 17:01:22 -0400
commit79d824cfb0e0cc9ff4fab0e0c546a83c0edaae1c (patch)
treed69e962a15493b2e36882810a2cc43d5a0de1a0b /src/Model/IModuleData.cs
parentb3015399591bd81b8519f0efa2ec177163f7d04a (diff)
initial commit
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