- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Winsoft.GOV.XF.WebApi.WXCore.Models
- {
- public class WXUser
- {
- public Guid Id { get; set; }
- public string OpenId { get; set; }
- public string Mobile { get; set; }
- }
- }
|