Files
SQLLint/SQLLinter/Core/DTO/HandlerResponseMessage.cs

20 lines
483 B
C#

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; }
}