You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
873 B
C#

using SqlSugar;
using System;
using System.Linq;
using System.Text;
namespace Txgy.RBS.DTO
{
///<summary>
///
///</summary>
public class RedisInfoDTO
{
public RedisInfoDTO()
{
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public int id { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string name { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string url { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public int port { get; set; }
}
}