mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-14 04:19:24 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
6 lines
105 B
C#
6 lines
105 B
C#
namespace Daybreak.Shared.Validators;
|
|
public interface IValidator
|
|
{
|
|
bool IsValid(object value);
|
|
}
|