Files
2022-11-01 15:26:08 +00:00

7 lines
120 B
C#

namespace TheXamlGuy.Framework.Core
{
public interface IInitializer
{
Task InitializeAsync();
}
}