namespace Tiobon.Core.Model.ViewModels { /// /// 服务器VM /// public class ServerViewModel { /// /// 环境变量 /// public string EnvironmentName { get; set; } /// /// 系统架构 /// public string OSArchitecture { get; set; } /// /// ContentRootPath /// public string ContentRootPath { get; set; } /// /// WebRootPath /// public string WebRootPath { get; set; } /// /// .NET Core版本 /// public string FrameworkDescription { get; set; } /// /// 内存占用 /// public string MemoryFootprint { get; set; } /// /// 启动时间 /// public string WorkingTime { get; set; } } }