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

24 lines
518 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Domain.Response
{
public class SaleRelation
{
[JsonPropertyName("appid")]
public string? Appid { get; set; }
[JsonPropertyName("appuserid")]
public string? Appuserid { get; set; }
[JsonPropertyName("uid")]
public int? Uid { get; set; }
[JsonPropertyName("mobile")]
public string? Mobile { get; set; }
}
}