Skip to content

Instantly share code, notes, and snippets.

@davidgabrichidze
Created March 27, 2018 12:03
Show Gist options
  • Save davidgabrichidze/9fe8570b1ba078bd27bb6821d706437d to your computer and use it in GitHub Desktop.
Save davidgabrichidze/9fe8570b1ba078bd27bb6821d706437d to your computer and use it in GitHub Desktop.
Response
public class SaveApplicationResponse
{
public bool Success { get; set; }
public string ApplicationNumber { get; set; }
public ValidationResult ValidationResult { get; set; }
}
public class ValidationResult
{
public bool IsValid { get; set; }
public List<ValidationAttribute> ValidationAttributes { get; set; }
}
public class ValidationAttribute
{
public string Name { get; set; }
public string Value { get; set; }
public bool IsValid { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment