/*
         * /// <summary>
         * /// Gets the folder where the schemas for all users on the
         * /// local machine are stored.
         * /// </summary>
         * static string SchemaFolder
         * {
         *  get
         *  {
         *      return Path.Combine(PropertyService.DataDirectory, "schemas");
         *  }
         * }
         *
         * /// <summary>
         * /// Gets the folder where schemas are stored for an individual user.
         * /// </summary>
         * static string UserSchemaFolder
         * {
         *  get
         *  {
         *      return Path.Combine(PropertyService.ConfigDirectory, "schemas");
         *  }
         * }
         */

        /// <summary>
        /// Should really pass schema info with the event.
        /// </summary>
        private static void OnUserSchemaAdded()
        {
            UserSchemaAdded?.Invoke(manager, new EventArgs());
        }
 // FIXME: Should really pass schema info with the event.
 static void OnUserSchemaAdded()
 {
     UserSchemaAdded?.Invoke(null, EventArgs.Empty);
 }