mirror of
https://github.com/vinaypamnani/wmie2.git
synced 2026-01-02 22:49:57 +01:00
31 lines
991 B
C#
31 lines
991 B
C#
namespace WmiExplorer.Sms
|
|
{
|
|
public static class ActionGroup
|
|
{
|
|
public static string ApplicationEvaluation = "Application Evaluation";
|
|
public static string Default = "Default";
|
|
public static string Endpoint = "Endpoint Protection";
|
|
public static string Inventory = "Inventory";
|
|
public static string LocationServices = "Location Services";
|
|
public static string Other = "Other";
|
|
public static string Policy = "Policy";
|
|
public static string SoftwareUpdates = "Software Updates";
|
|
public static string StateMessage = "State Messages";
|
|
}
|
|
|
|
public class SmsClientAction
|
|
{
|
|
public SmsClientAction(string id, string displayName, string group = "Default")
|
|
{
|
|
Id = id;
|
|
DisplayName = displayName;
|
|
Group = group;
|
|
}
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
public string Group { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
}
|
|
} |