12 lines
208 B
C#
12 lines
208 B
C#
namespace Shared.Models.AppConf
|
|
{
|
|
public class CmdConf
|
|
{
|
|
public string path { get; set; }
|
|
|
|
public string[] arguments { get; set; }
|
|
|
|
public string eval { get; set; }
|
|
}
|
|
}
|