25 lines
750 B
C#
25 lines
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.FireManagement.Response
|
|
{
|
|
public class UserOnLineResp
|
|
{
|
|
public long CreateId { get; set; }
|
|
public string Name { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public string Lng { get; set; }
|
|
public string Lat { get; set; }
|
|
public string Type { get; set; }
|
|
public int Identity { get; set; }
|
|
public string Phone { get; set; }
|
|
public string State { get; set; }//在线状态
|
|
public double OnLineTime { get; set; }
|
|
public int IsIn { get; set; }
|
|
public string TownName { get; set; }
|
|
}
|
|
}
|