powerfun-new-net/Model/MapRouteAndUserQueryVM.cs

28 lines
562 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
{
2020-11-23 17:07:40 +08:00
//public long RowNumber { get; set; }
2020-09-17 10:23:26 +08:00
public int RouteId { get; set; }
2020-11-23 17:07:40 +08:00
//public int UserId { get; set; }
2020-09-17 10:23:26 +08:00
2020-11-23 17:07:40 +08:00
//public string DirPath { get; set; }
2020-09-17 10:23:26 +08:00
2020-11-23 17:07:40 +08:00
//public string NickName { get; set; }
2020-09-17 10:23:26 +08:00
2020-11-23 17:07:40 +08:00
//public string WxHeadImg { get; set; }
2020-09-17 10:23:26 +08:00
2020-11-23 17:07:40 +08:00
//public int? FTP { get; set; }
2020-09-17 10:23:26 +08:00
2020-11-23 17:07:40 +08:00
public long Id { get; set; }
2020-09-17 10:23:26 +08:00
public string ContinueMark { get; set; }
}
}