18 lines
360 B
C#
18 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DG.Core
|
|
{
|
|
public interface IApiResult<TData> : IApiResult
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the result.
|
|
/// </summary>
|
|
/// <value>The result.</value>
|
|
TData Data { get; set; }
|
|
}
|
|
}
|