Created
October 15, 2018 03:30
-
-
Save luismts/6937c64772e80802c2fd850a9c915881 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 Plugin.ValidationRules; | |
namespace ValidationRulesTest.ViewModels | |
{ | |
public class Example1ViewModel | |
{ | |
public Example1ViewModel() | |
{ | |
Name = new ValidatableObject<string>(); | |
} | |
public ValidatableObject<string> Name { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment