using System.Collections.Generic;
namespace GxPress.Result.App.Flow
{
///
/// 待办事项
///
public class FlowListResult : Entity.WorkFlow.Flow
{
///
/// 待办Id
///
public int TodoId { get; set; }
///
/// 当前页
///
public string Title { get; set; }
///
/// 头像
///
///
public string AvatarUrl { get; set; }
///
/// 每页显示多少项
///
public List Summaries { get; set; }
}
}