13 lines
275 B
C#
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; }
|
|
}
|
|
} |