mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-24 13:42:53 +01:00
7 lines
171 B
C#
7 lines
171 B
C#
namespace Phantom.Server.Web.Components.Forms.Base;
|
|
|
|
public interface ICustomFormField {
|
|
bool TwoWayValueBinding { get; set; }
|
|
void SetStringValue(string? value);
|
|
}
|