namespace RMC.Backend.Baas { /// /// Defines the API: Main entry point to the backend system. /// public interface IBackendSystem : IInitializableAsync { // Properties ------------------------------------ BackendSystemEvent OnInitialized { get; } // General Methods ------------------------------ } }