26 lines
763 B
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; }
|
|
}
|
|
}
|