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; } /// /// 用户名称 /// public string username { get; set; } /// /// 分组名称 /// public string groupname { get; set; } /// /// 联系方式 /// public string phone { get; set; } } }