11 lines
274 B
C#
11 lines
274 B
C#
namespace PARR.API.Contracts.V1.Responses
|
|
{
|
|
public class TemplateAgentResponse
|
|
{
|
|
public bool? IsAgent { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Script { get; set; }
|
|
public int? TimeOutSec { get; set; }
|
|
}
|
|
}
|