WGShare.API/WGShare.Domain/AgoraApiResult/AgoraResponse.cs

16 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WGShare.Domain.AgoraApiResult
{
public class AgoraResponse<T>
{
public bool success { get; set; }
public T Data { get; set; }
}
}