using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
using OneOf;
namespace AntDesign
{
///
/// config the confirm button's properties
///
public class ConfirmButtonOptions
{
///
/// the leftmost button properties in LTR layout
///
public ButtonProps Button1Props { get; set; }
///
/// the secondary button properties in LTR layout
///
public ButtonProps Button2Props { get; set; }
///
/// the third button properties in LTR layout
///
public ButtonProps Button3Props { get; set; }
}
}