Skip to content

Instantly share code, notes, and snippets.

@ameerthehacker
Last active August 25, 2018 19:54
Show Gist options
  • Save ameerthehacker/c02d4c5531dae8458d0715c44e7a0e79 to your computer and use it in GitHub Desktop.
Save ameerthehacker/c02d4c5531dae8458d0715c44e7a0e79 to your computer and use it in GitHub Desktop.
Interface for validators
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