namespace Discord.Interactions;
///
/// Represents the class for type.
///
public class FileUploadComponentInfo : InputComponentInfo
{
///
/// Gets the minimum number of values that can be selected.
///
public int MinValues { get; }
///
/// Gets the maximum number of values that can be selected.
///
public int MaxValues { get; }
internal FileUploadComponentInfo(Builders.FileUploadComponentBuilder builder, ModalInfo modal) : base(builder, modal)
{
MinValues = builder.MinValues;
MaxValues = builder.MaxValues;
}
}