| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class SearchUserResponse
- {
- public string account { get; set; }
- public int current { get; set; }
- public long? roleId { get; set; }
- public int size { get; set; }
- public string username { get; set; }
- }
- }
|