Добавьте файлы проекта.
This commit is contained in:
20
SQLLinter/Core/DTO/HandlerResponseMessage.cs
Normal file
20
SQLLinter/Core/DTO/HandlerResponseMessage.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace SQLLinter.Core.DTO;
|
||||
|
||||
public class HandlerResponseMessage
|
||||
{
|
||||
public HandlerResponseMessage(bool success, bool shouldLint)
|
||||
: this(success, shouldLint, false)
|
||||
{
|
||||
}
|
||||
|
||||
public HandlerResponseMessage(bool success, bool shouldLint, bool shouldFix)
|
||||
{
|
||||
Success = success;
|
||||
ShouldLint = shouldLint;
|
||||
ShouldFix = shouldFix;
|
||||
}
|
||||
|
||||
public bool Success { get; }
|
||||
public bool ShouldLint { get; }
|
||||
public bool ShouldFix { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user