/Helpers/IModuleController.cs
https://github.com/cmath/SimpleLoginManager · C# · 16 lines · 14 code · 2 blank · 0 comment · 0 complexity · 944b1e783925bd095ba662bd4023abf4 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Login.Helpers
- {
- interface IModuleController
- {
- void Initialize ( );
- void Run ( );
- void ShutDown ( );
- }
- }