27 lines
305 B
C#
27 lines
305 B
C#
namespace MarketAlly.GitCommitEditor.Models;
|
|
|
|
public enum IssueSeverity
|
|
{
|
|
Info,
|
|
Warning,
|
|
Error
|
|
}
|
|
|
|
public enum AnalysisStatus
|
|
{
|
|
Pending,
|
|
Analyzed,
|
|
Approved,
|
|
Applied,
|
|
Skipped,
|
|
Failed
|
|
}
|
|
|
|
public enum OperationStatus
|
|
{
|
|
Pending,
|
|
Applied,
|
|
Failed,
|
|
RolledBack
|
|
}
|