This commit is contained in:
2025-09-24 01:19:10 +07:00
parent 40f3c66694
commit 9bdfb989c1
9 changed files with 202 additions and 419 deletions

View File

@@ -9,18 +9,11 @@ namespace Managing.Application.Abstractions.Models;
[GenerateSerializer]
public class AgentSummaryUpdateEvent
{
[Id(0)]
public int UserId { get; set; }
[Id(1)]
public Guid BotId { get; set; }
[Id(2)]
public AgentSummaryEventType EventType { get; set; }
[Id(3)]
public DateTime Timestamp { get; set; } = DateTime.UtcNow;
[Id(4)]
public string? AdditionalData { get; set; } // Optional additional context
}
[Id(0)] public Guid BotId { get; set; }
[Id(1)] public AgentSummaryEventType EventType { get; set; }
[Id(2)] public DateTime Timestamp { get; set; } = DateTime.UtcNow;
[Id(3)] public string? AdditionalData { get; set; } // Optional additional context
}