22 lines
488 B
C#
22 lines
488 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.FireManagement.Request
|
|
{
|
|
public class UserOnLineReq
|
|
{
|
|
public int page { get; set; }
|
|
public int limit { get; set; }
|
|
public string townname { get; set; }
|
|
public string isonline { get; set; }
|
|
public UserOnLineReq()
|
|
{
|
|
page = 1;
|
|
limit = 10;
|
|
}
|
|
}
|
|
}
|