| 1234567891011121314151617 |
- using ivf_tl_Entity.Entity.AppSetting;
- using ivf_tl_Entity.Entity.balance;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Result
- {
- public class UserManagerResult
- {
- public List<UserManageEntity> records { get; set; } = new List<UserManageEntity>();
- public int total { get; set; }
- }
- }
|