You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Components/Form/IFormComponent.cs

16 lines
410 B

2 years ago
namespace Connected.Components;
public interface IFormComponent
{
public bool Required { get; set; }
public bool HasError { get; set; }
2 years ago
public bool HasErrors { get; }
public bool Modified { get; }
2 years ago
public object Validation { get; set; }
public bool IsForNull { get; }
public List<string> ValidationErrors { get; set; }
public Task Validate();
public void Reset();
public void ResetValidation();
}