init
This commit is contained in:
16
Common/DTS.Common.Import/ImportError.cs
Normal file
16
Common/DTS.Common.Import/ImportError.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace DTS.Common.Import
|
||||
{
|
||||
public enum ImportSeverityError
|
||||
{
|
||||
Critical,
|
||||
Error,
|
||||
Warning,
|
||||
Info
|
||||
}
|
||||
public class ImportError
|
||||
{
|
||||
public string Message { get; set; }
|
||||
public ImportSeverityError Severity { get; set; }
|
||||
public bool ContinueImportOnError { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user