16 lines
335 B
C#
16 lines
335 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WeworkUserWorker.Dto
|
|
{
|
|
public class ZXDApiResult<T> where T : class
|
|
{
|
|
public int code { get; set; }
|
|
public string? message { get; set; }
|
|
public T data { get; set; }
|
|
}
|
|
}
|