using System.Collections.Generic; namespace DCIT.Core.Models { public sealed class RuntimeEnvironmentValidationResult { public string StartupDirectory { get; set; } public bool IsStartupDirectoryWritable { get; set; } public string ResolvedAutomationProgId { get; set; } public string ResolvedDocToPath { get; set; } public IList BlockingIssues { get; } = new List(); public IList Warnings { get; } = new List(); public bool HasBlockingIssues { get { return BlockingIssues.Count > 0; } } } }