using System;
using System.Collections.Generic;
using System.Text;
namespace DllEapEntity.OFILM
{
///
/// 返回值
///
///
public class EapApiResponse
{
///
/// 状态码 ok 成功 fail 失败
///
public string Code { get; set; } = "ok";
///
/// 提示信息 状态码为ok时为空
///
public string Message { get; set; } = string.Empty;
///
/// 获取到的具体值
///
public T Data { get; set; }
}
}