-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVsPackageExtractResult.cs
More file actions
36 lines (30 loc) · 1.1 KB
/
VsPackageExtractResult.cs
File metadata and controls
36 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Data class that stores the results of extracting files from a Code Factory package.
/// </summary>
public class VsPackageExtractResult
{
/// <summary>
/// Default constructor that initializes the properties.
/// </summary>
public VsPackageExtractResult()
{
HasErrors = false;
Errors = new List<string>();
}
/// <summary>
/// Flag that determines if there were errors extracting an of the files from the package.
/// </summary>
public bool HasErrors { get; set; }
/// <summary>
/// List of the human readable error messaged that occurred. This will be null if HasErrors is false.
/// </summary>
public List<string> Errors { get; set; }
}
}