feat(git-provider): Set OutputType for GetGitRepoCommand

This commit is contained in:
Scott 2026-08-25 14:54:31 +10:00
commit 5f04ed4262

View file

@ -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()