Hermod
A cross-platform, modular and fully GDPR-compliant email archival solution!
Loading...
Searching...
No Matches
IConfigLoaded.cs
Go to the documentation of this file.
1using System;
2
3namespace Hermod.Config {
4
5 public delegate void ConfigLoadedEventHandler(object? sender, ConfigLoadedEventArgs e);
6
7 public class ConfigLoadedEventArgs: EventArgs { }
8
13 public interface IConfigLoaded {
14
16
17 }
18}
19
Interface defining a contract which notifies anyone whom it may concern when the application configur...
ConfigLoadedEventHandler? ConfigLoaded
delegate void ConfigLoadedEventHandler(object? sender, ConfigLoadedEventArgs e)