namespace SabreTools.Data.Models.WiseInstaller.Actions
{
///
/// Set Files/Buffers
///
/// This action sets the FILES= and BUFFERS= lines in Config.sys. If either is currently
/// lower than the minimum specified in this action, it is increased to the specified value. If
/// either is already greater than the minimum specified in this action, it is not changed.
///
///
/// This action is called through Call DLL Function and is mapped to "f21".
///
///
public class SetFilesBuffers : FunctionData
{
///
/// Minimum files to be specfied in FILES= in CONFIG.SYS
///
/// Blank means leave unchanged
public string? MinimumFiles { get; set; }
///
/// Minimum buffers to be specfied in BUFFERS= in CONFIG.SYS
///
/// Blank means leave unchanged
public string? MinimumBuffers { get; set; }
}
}