mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-15 14:59:30 +00:00
9 lines
165 B
C#
9 lines
165 B
C#
namespace System.Windows.Extensions.Services
|
|
{
|
|
public interface IApplicationLifetimeService
|
|
{
|
|
void OnStartup();
|
|
void OnClosing();
|
|
}
|
|
}
|