Last active
August 25, 2018 19:54
-
-
Save ameerthehacker/c02d4c5531dae8458d0715c44e7a0e79 to your computer and use it in GitHub Desktop.
Interface for validators
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
namespace XamarinFormValidation.Validators.Contracts | |
{ | |
public interface IValidator | |
{ | |
string Message { get; set; } | |
bool Check(string value); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment