2025-09-24 11:24:38 +05:00

11 lines
134 B
C#

namespace TPSBR
{
public interface IBackHandler
{
int Priority { get; }
bool IsActive { get; }
bool OnBackAction();
}
}