powerfun-new-net/Model/MapRouteAndUserQueryVM.cs
2020-11-23 17:07:40 +08:00

28 lines
562 B
C#

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 long Id { get; set; }
public string ContinueMark { get; set; }
}
}