mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-10 14:57:44 -05:00
13 lines
264 B
C#
13 lines
264 B
C#
namespace Cleanuparr.Persistence.Models.Events;
|
|
|
|
public interface IEvent
|
|
{
|
|
Guid Id { get; set; }
|
|
|
|
DateTime Timestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// JSON data associated with the event
|
|
/// </summary>
|
|
string? Data { get; set; }
|
|
} |