using System; using System.Collections.Generic; using System.Text; namespace OnlineUserPool.Model { public class MapRouteAndUserQueryVM { public long RowNumber { get; set; } public int RouteId { get; set; } public int UserId { get; set; } public string DirPath { get; set; } public string NickName { get; set; } public string WxHeadImg { get; set; } public int? FTP { get; set; } public string RankingId { get; set; } public string ContinueMark { get; set; } } }