30 lines
585 B
C#
30 lines
585 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace UIStandardWebApi.EntityDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ip 端口号保存
|
|||
|
|
/// </summary>
|
|||
|
|
public class Sys_SocketDto : BaseDTO
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ID
|
|||
|
|
/// </summary>
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// iP
|
|||
|
|
/// </summary>
|
|||
|
|
public string? IP { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 端口号
|
|||
|
|
/// </summary>
|
|||
|
|
public string? Port { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|