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