10 lines
191 B
C#
Raw Permalink Normal View History

2025-10-11 18:25:59 +08:00
namespace XiaoZhiSharp.Models
{
public class TResult<T>
{
public int Code { get; set; }
public T Data { get; set; }
public string Msg { get; set; }
}
}