21 lines
440 B
C#
21 lines
440 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.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; }
|
|
}
|
|
}
|