LASAPlatform/OpenAuth.App/ServiceApp/Response/ReciveData.cs

17 lines
372 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Response
{
public class ReciveData<T>
{
public int code { get; set; }
public string message { get; set; }
public T data { get; set; }
public string traceid { get; set; }
}
}