diff --git a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs b/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs index 206f40d..a719fc5 100644 --- a/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs +++ b/src/PowershellModule/Git/Commands/GetGitRepoCommand.cs @@ -1,9 +1,11 @@ using System.Management.Automation; using ModuleCore.Git; +using ModuleCore.Git.Models; namespace PowershellModule.Git.Commands; [Cmdlet(VerbsCommon.Get, GitCommands.GitRepoNoun)] +[OutputType(typeof(GitRegistration))] public class GetGitRepoCommand : PSCmdlet { protected override void BeginProcessing()