// ========================================================================== // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex UG (haftungsbeschränkt) // All rights reserved. Licensed under the MIT license. // ========================================================================== using Squidex.Infrastructure.EventSourcing; namespace Squidex.Infrastructure.TestHelpers { internal sealed class MyEvent : IEvent { public string MyProperty { get; set; } } }