27 lines
664 B
C#
27 lines
664 B
C#
using System;
|
|
|
|
namespace TellmePdmsPluging.Models
|
|
{
|
|
public class CloseProjectRequest
|
|
{
|
|
public string ExecutionId { get; set; }
|
|
public string execution_id { get { return ExecutionId; } set { ExecutionId = value; } }
|
|
|
|
public bool Force { get; set; }
|
|
|
|
public void ApplyDefaults()
|
|
{
|
|
// reserved for future defaults
|
|
}
|
|
}
|
|
|
|
public class CloseProjectResult
|
|
{
|
|
public bool Success { get; set; }
|
|
public string Message { get; set; }
|
|
public string ProjectName { get; set; }
|
|
public bool WasOpen { get; set; }
|
|
public DateTime CompletedAt { get; set; }
|
|
}
|
|
}
|