powerfun-new-net/Model/MapRouteAndUserQueryVM.cs

28 lines
559 B
C#
Raw Permalink Normal View History

2020-09-17 10:23:26 +08:00
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; }
}
}