This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace BP.WF.HttpHandler
{
/// <summary>
/// 调Handler,返回值data的通用对象类
/// </summary>
public class JsonResultInnerData
/// 信息
public string Msg { get; set; }
/// 返回数据对象
public object InnerData { get; set; }
}