9 lines
153 B
C#

namespace Learun.Application.WeChat
{
public interface ISend<out T>
where T : OperationResultsBase, new()
{
T Send();
}
}