1
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-12-11 04:51:21 +04:00
Files
parkan-playground/NResUI/Abstractions/IExitReceiver.cs

7 lines
106 B
C#
Raw Normal View History

2024-11-15 19:06:44 +03:00
namespace NResUI.Abstractions
{
public interface IExitReceiver
{
void OnExit();
}
}