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