17 lines
369 B
C#
17 lines
369 B
C#
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;
|
|
}
|
|
}
|