using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Entity.WorkProcessDto;
namespace GxPress.Result.App.Flow
{
///
/// 审批/抄送意见
///
public class MessageResult
{
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 用户名
///
public string Name { get; set; }
///
/// 意见
///
public string Message { get; set; }
///
/// 时间
///
public DateTime? CreatedDate { get; set; }
}
}