crm.core/code/Crm.Core.MsgTool.Domain/Dto/UserAppDto.cs

20 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.MsgTool.Domain.Dto
{
public class UserAppDto
{
[JsonPropertyName("_appid")]
public string? _appid { get; set; }
[JsonPropertyName("_appuserid")]
public string? _appuserid { get; set; }
[JsonPropertyName("_nickname")]
public string? _nickname { get; set; }
}
}