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

17 lines
372 B
C#
Raw Permalink Normal View History

2025-07-02 09:35:20 +08:00
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; }
}
}