修改通用返回

This commit is contained in:
2023-05-19 10:59:41 +08:00
parent 88c8d5e34c
commit 8bbdbc6cf5
5 changed files with 34 additions and 33 deletions
@@ -30,13 +30,13 @@
T Data { get; }
}
public interface IResponseOutput<T,T2> : IResponseOutput
{
/// <summary>
/// 返回数据
/// </summary>
T Data { get; }
//public interface IResponseOutput<T,T2> : IResponseOutput
//{
// /// <summary>
// /// 返回数据
// /// </summary>
// T Data { get; }
T2 OtherInfo { get; }
}
// T2 OtherInfo { get; }
//}
}