- Switch to message id already generated

This commit is contained in:
Infi
2025-11-17 17:53:01 +01:00
parent 1ccb6b42ed
commit 602f245c34
2 changed files with 2 additions and 1 deletions
@@ -61,7 +61,7 @@ public struct Messages(MessageResponse[] set)
/// </summary>
public struct MessageResponse()
{
[JsonProperty("id")] public Guid Id = Guid.NewGuid();
[JsonProperty("id")] public Guid Id = Guid.Empty;
[JsonProperty("timestamp")] public string Timestamp = "";
[JsonProperty("templates")] public MessageTemplate[] Templates;
}