-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLibraryLoadStatus.cs
More file actions
34 lines (30 loc) · 1.01 KB
/
LibraryLoadStatus.cs
File metadata and controls
34 lines (30 loc) · 1.01 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Data class that tracks if the code factory libraries were loaded into memory correctly.
/// </summary>
public class LibraryLoadStatus
{
/// <summary>
/// Default constructor that initializes the properties.
/// </summary>
public LibraryLoadStatus()
{
HasErrors = false;
Errors = new List<string>();
}
/// <summary>
/// Flag that determines if errors occurred while loading libraries.
/// </summary>
public bool HasErrors { get; set; }
/// <summary>
/// List of end user formatted errors.
/// </summary>
public List<string> Errors { get; set; }
}
}