Carried over contracts.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 44s

This commit is contained in:
2025-07-05 01:57:35 +02:00
commit 311b70cbb4
12 changed files with 787 additions and 0 deletions

View File

@ -0,0 +1,16 @@
namespace MessengerApi.Contracts
{
/// <summary>
/// Outbox type of message. A server-app will treat this as a response. A client app will treat this as a request.
/// </summary>
public class OutboxMessage
{
public Guid? ToUserId { get; set; }
public string PayloadType { get; set; }
public string Payload { get; set; }
public int? LifespanInSeconds { get; set; }
}
}