12 lines
199 B
C#
12 lines
199 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace DDD
|
|
{
|
|
public interface IManager
|
|
{
|
|
void PreInit();
|
|
Task PreInitAsync();
|
|
Task InitAsync();
|
|
Task PostInitAsync();
|
|
}
|
|
} |