New event type to fall back to when not handled properly.

This commit is contained in:
Xjph 2021-10-27 21:51:19 -02:30
commit 08a3d50216

View file

@ -0,0 +1,7 @@
namespace Observatory.Framework.Files.Journal
{
public class UnhandledEvent : JournalBase
{
public string OriginalEvent { get; init; }
}
}