IApiResultOfTR.cs 247 B

1234567891011
  1. namespace Sharing.DaoShu110
  2. {
  3. public interface IApiResultR<T> : IApiResultR
  4. {
  5. /// <summary>
  6. /// Gets or sets the result.
  7. /// </summary>
  8. /// <value>The result.</value>
  9. T rdata { get; set; }
  10. }
  11. }