15 lines
332 B
C#
15 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Core.Shared
|
|
{
|
|
public class CommonApiResult<T> where T : class
|
|
{
|
|
public int code { get; set; }
|
|
public string? message { get; set; }
|
|
public T data { get; set; }
|
|
}
|
|
} |