namespace Qrakhen.Qamp.Core; public interface IStack : IPush, IPop; public interface IPush { TKey Push(T value); } public interface IPop { T Pop(); }