using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DG.Core { public interface IApiResult : IApiResult { /// /// Gets or sets the result. /// /// The result. TData Data { get; set; } } }