60 lines
No EOL
2.1 KiB
C#
60 lines
No EOL
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace ULA.Cathay.IntegracionesEIK.Estructuras
|
|
{
|
|
|
|
public class UltimusTaskResponse: BaseResponse {
|
|
|
|
public UltimusTaskResponse() {
|
|
UltimusTasksList = new List<UltimusTask>();
|
|
}
|
|
|
|
public List<UltimusTask> UltimusTasksList { get; set; }
|
|
}
|
|
|
|
public class UltimusTask
|
|
{
|
|
public string CheckoutUser { get; set; }
|
|
public double dCost { get; set; }
|
|
public double dDelayTime { get; set; }
|
|
public double dEndTime { get; set; }
|
|
public double dOverDueTime { get; set; }
|
|
public double dQueueEndTime { get; set; }
|
|
public double dQueueStartTime { get; set; }
|
|
public double dStartTime { get; set; }
|
|
public double dUrgentTime { get; set; }
|
|
public ushort Mode { get; set; }
|
|
public int nIncidentNo { get; set; }
|
|
public int nPriority { get; set; }
|
|
public int nProcessVersion { get; set; }
|
|
public int nRecipientType { get; set; }
|
|
public int nStepProperties { get; set; }
|
|
public int nStepType { get; set; }
|
|
public int nTaskRate { get; set; }
|
|
public int nTaskStatus { get; set; }
|
|
public int nTaskSubStatus { get; set; }
|
|
public int nTaskTime { get; set; }
|
|
public string strAssignedToUser { get; set; }
|
|
public string strAssignedToUserFullName { get; set; }
|
|
public string strFormUrl { get; set; }
|
|
public string strGroupName { get; set; }
|
|
public string strHelpUrl { get; set; }
|
|
public string strProcessName { get; set; }
|
|
public string strRecipient { get; set; }
|
|
public string strRecipientFullName { get; set; }
|
|
public string strStepId { get; set; }
|
|
public string strStepName { get; set; }
|
|
public string strStepOrg { get; set; }
|
|
public string strSummary { get; set; }
|
|
public string strTaskId { get; set; }
|
|
public string strTaskSharedToUser { get; set; }
|
|
public string strUser { get; set; }
|
|
public string strUserFullName { get; set; }
|
|
|
|
}
|
|
|
|
|
|
} |