24 lines
523 B
C#
24 lines
523 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 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; }
|
|
}
|
|
}
|