You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
763 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EasyBL
{
class FlowInfo
{
public string ParentId { set; get; }
public string FlowId { set; get; }
public string Order { set; get; }
public string SignedWay { set; get; }
public string SignedId { set; get; }
public string SignedMember { set; get; }
public string Department { set; get; }
public string Jobtitle { set; get; }
public string SignedDecision { set; get; }
public string SignedOpinion { set; get; }
public string SignedDate { set; get; }
public string Line { set; get; }
public bool Icon { set; get; }
}
}