31 lines
822 B
C#
31 lines
822 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.FmInterphoneApp.Response
|
|
{
|
|
public class InterphoneInfoResp
|
|
{
|
|
public string account { get; set; }
|
|
public string passwd { get; set; }
|
|
public double lat { get; set; }
|
|
public double lng { get; set; }
|
|
public DateTime time { get; set; }
|
|
public long crc { get; set; }
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
public string username { get; set; }
|
|
/// <summary>
|
|
/// 分组名称
|
|
/// </summary>
|
|
public string groupname { get; set; }
|
|
/// <summary>
|
|
/// 联系方式
|
|
/// </summary>
|
|
public string phone { get; set; }
|
|
}
|
|
}
|