blob: df2c39d6914fa797e1203acf54c04bd5d7ba5dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Management.Automation;
namespace HyperBooru.PowerShell;
[Alias("ahbmt")]
[Cmdlet(VerbsCommon.Add, "HyperBooruMediaTag")]
public class AddMediaTagCmdlet : SessionCmdlet {
[Parameter(Position = 1, Mandatory = true)]
public Guid MediaId { get; set; }
[Parameter(Position = 2, Mandatory = true)]
public Guid[] TagId { get; set; }
protected override void ProcessRecord() =>
Session.Media.AddTagsAsync(MediaId, TagId)
.GetAwaiter()
.GetResult();
}
|