first commit
This commit is contained in:
24
DCIT.Core/Models/RuntimeEnvironmentValidationModels.cs
Normal file
24
DCIT.Core/Models/RuntimeEnvironmentValidationModels.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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<string> BlockingIssues { get; } = new List<string>();
|
||||
|
||||
public IList<string> Warnings { get; } = new List<string>();
|
||||
|
||||
public bool HasBlockingIssues
|
||||
{
|
||||
get { return BlockingIssues.Count > 0; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user