TG.WXCRM.V4/Core.DTO/Res/UserCenterEventDto.cs

15 lines
427 B
C#

namespace CRM.Core.DTO.Res
{
public class UserCenterEventDto
{
public string ResId { get; set; }
public string AppId { get; set; }
public string AppUserId { get; set; }
public string UnionId { get; set; }
public string EventMemo { get; set; }
public int EventId { get; set; }
public int Channel { get; set; }
public string Mobile { get; set; }
}
}