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