Files
messengerapi/code/MessengerApi/Models/Http/SendRequest.cs
masiton a44912ac87
All checks were successful
Build and Push Docker Image / build (push) Successful in 55s
Build and Push Docker Image / docker (push) Successful in 36s
payloadLifespan/payloadLifetime and other name variants unified to Time To Live naming.
2025-07-05 17:07:53 +02:00

13 lines
275 B
C#

namespace MessengerApi.Models.Http
{
public class SendRequest
{
public Guid? ToUserId { get; set; }
public string Payload { get; set; }
public string PayloadType { get; set; }
public int? TimeToLiveInSeconds { get; set; }
}
}