SwiftValidator/Validator/Rule.swift

15 lines
247 B
Swift

//
// Validation.swift
// Pingo
//
// Created by Jeff Potter on 11/11/14.
// Copyright (c) 2015 jpotts18. All rights reserved.
//
import Foundation
protocol Rule {
func validate(value: String) -> Bool
func errorMessage() -> String
}