Files

34 lines
980 B
C#
Raw Permalink Normal View History

2025-12-11 09:17:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonEntity
{
public class HostSearchEntity
{
public string HostNumber { get; set; }
public string RoomNumber { get; set; }
public string DNS { get; set; }
public string Version { get; set; }
public string ConfigVersion { get; set; }
public string SubnetMask { get; set; }
public string Gateway { get; set; }
public string Remark { get; set; }
public DateTime? Last_Modified_Time { get; set; }
public string IP { get; set; }
public int Port { get; set; }
public string MAC { get; set; }
public string DeviceName { get; set; }
public bool IsAutoGetKey { get; set; }
public string DeviceSecret { get; set; }
public string IotId { get; set; }
public string ProductKey { get; set; }
public bool IsPublish { get; set; }
}
}