using System.Collections.Generic;
namespace OASystem.Domain.ViewModels.PersonnelModule
{
///
/// 字符串格式化结果View
///
public class StringFormatView
{
///
/// 原始模板
///
public string OriginalTemplate { get; set; }
///
/// 格式化后的结果
///
public string FormattedResult { get; set; }
///
/// 参数列表
///
public List Parameters { get; set; }
///
/// 参数数量
///
public int ParameterCount { get; set; }
///
/// 操作是否成功
///
public bool Success { get; set; }
///
/// 操作消息
///
public string Message { get; set; }
}
}