27 lines
769 B
C#
27 lines
769 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
public class LMRegisterInfo
|
|
{
|
|
// 基础信息
|
|
public string HotelCode { get; set; }
|
|
public string RoomNumber { get; set; }
|
|
public string HostNumber { get; set; }
|
|
public string MAC { get; set; }
|
|
|
|
// 网络信息
|
|
public string EndPoint { get; set; }
|
|
public byte[] Original_Data { get; set; }
|
|
public string CurrentDateTime { get; set; }
|
|
public long UnixTime { get; set; }
|
|
//public string ConfigVersion { get; set; }
|
|
//public string SubnetMask { get; set; }
|
|
//public string Gateway { get; set; }
|
|
//public string DNS { get; set; }
|
|
}
|
|
}
|