namespace Qrakhen.TilingFrames.Models;
///
/// Declares the intent of dropping a host into another.
///
public enum TilingMethod
{
///
/// In the case of the host being placed as a split next to the target host.
///
Split = 0,
///
/// In case of the new host becoming a tab of the target host, rather than splitting.
///
Drop = 1
}