Files
Speckle.Material.Avalonia/Material.Dialog/TextFieldDialogBuilderParams.cs
T
2022-07-05 10:21:35 +09:00

13 lines
436 B
C#

using Material.Dialog.Bases;
namespace Material.Dialog
{
public class TextFieldDialogBuilderParams : TwoFeedbackDialogBuilderParamsBase
{
/// <summary>
/// Build text fields stack.
/// </summary>
public TextFieldBuilderParams[] TextFields = TextFieldBuilderParams.OneRegularTextField;
//public DialogResult NegativeResult = new DialogResult(DialogHelper.DIALOG_RESULT_CANCEL);
}
}