LANCommander/LANCommander.SDK/PowerShell/Cmdlets/_BaseCmdlet.cs
2024-08-21 20:19:04 -05:00

15 lines
362 B
C#

using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.SDK.PowerShell.Cmdlets
{
public abstract class BaseCmdlet : Cmdlet
{
public static Client Client { get; set; }
}
}