Refactor: Revert to hard deletes for messages. Remove IsDeleted flag and update repository and configurations accordingly.

This commit is contained in:
google-labs-jules[bot]
2025-07-04 06:03:14 +00:00
parent fab3d6b67b
commit 204e8dba9c
21 changed files with 1299 additions and 185 deletions
@@ -0,0 +1,7 @@
namespace Govor.Contracts.Requests.SignalR;
public class EditMessageRequest
{
public Guid MessageId { get; set; }
public string NewEncryptedContent { get; set; } = string.Empty;
}