Last active
August 24, 2020 20:07
-
-
Save samueleresca/9c95fed3e05f8f61aab32c711a9c37f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using deequ.Constraints; | |
namespace deequ.Checks | |
{ | |
public class CheckResult | |
{ | |
Check Check { get;} | |
CheckStatus Status { get;} | |
IEnumerable<ConstraintResult> ConstraintResults { get;} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment