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.
16 lines
410 B
16 lines
410 B
namespace Connected.Components;
|
|
|
|
public interface IFormComponent
|
|
{
|
|
public bool Required { get; set; }
|
|
public bool HasError { get; set; }
|
|
public bool HasErrors { get; }
|
|
public bool Modified { get; }
|
|
public object Validation { get; set; }
|
|
public bool IsForNull { get; }
|
|
public List<string> ValidationErrors { get; set; }
|
|
public Task Validate();
|
|
public void Reset();
|
|
public void ResetValidation();
|
|
}
|