namespace Cleanuparr.Persistence.Models.Events; public interface IEvent { Guid Id { get; set; } DateTime Timestamp { get; set; } /// /// JSON data associated with the event /// string? Data { get; set; } }