summaryrefslogtreecommitdiff
path: root/GetMediaTag.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GetMediaTag.cs')
-rw-r--r--GetMediaTag.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/GetMediaTag.cs b/GetMediaTag.cs
index 90d9835..638a85c 100644
--- a/GetMediaTag.cs
+++ b/GetMediaTag.cs
@@ -1,14 +1,10 @@
-using HyperBooru.ApiClient;
-using System.Management.Automation;
+using System.Management.Automation;
namespace HyperBooru.PowerShell;
[Alias("ghbmt")]
[Cmdlet(VerbsCommon.Get, "HyperBooruMediaTag")]
-public class GetMediaTagCmdlet : PSCmdlet {
- [Parameter(Position = 0, Mandatory = true)]
- public required HBSession Session { get; set; }
-
+public class GetMediaTagCmdlet : SessionCmdlet {
[Parameter(Position = 1, Mandatory = true)]
public Guid MediaId { get; set; }