2025-03-28 09:49:56 +08:00

29 lines
660 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RunUpdater.Lib
{
public class IISInfo
{
/// <summary>
/// 站点+端口
/// </summary>
public string DomainPort { get; set; }
/// <summary>
/// 应用程序池
/// </summary>
public string AppPool { get; set; }
/// <summary>
/// 网站名称
/// </summary>
public string ServerComment { get; set; }
/// <summary>
/// 物理路径
/// </summary>
public string PhysicalPath { get; set; }
}
}