Zxd.Core/code/Zxd.Core.Domain/Response/SaleClusResult.cs

21 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Domain.Response
{
public class SaleClusResult<TData>
{
[JsonPropertyName("list")]
public List<TData>? List { get; set; }
[JsonPropertyName("ret")]
public int Ret { get; set; }
[JsonPropertyName("msg")]
public string? Msg { get; set; }
}
}