LANCommander/LANCommander.SDK/Models/Action.cs

16 lines
374 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class Action
{
public string Name { get; set; }
public string Arguments { get; set; }
public string Path { get; set; }
public string WorkingDirectory { get; set; }
public bool PrimaryAction { get; set; }
}
}