2023-01-16 17:32:47 +00:00
|
|
|
|
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; }
|
2023-01-17 05:45:46 +00:00
|
|
|
|
public int SortOrder { get; set; }
|
2023-01-16 17:32:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|