Files
Govor/Govor.Contracts/Requests/RegisterPushTokenRequest.cs
T
2026-03-01 16:48:06 +07:00

7 lines
157 B
C#

namespace Govor.Contracts.Requests;
public class RegisterPushTokenRequest
{
public string Token { get; set; }
public string Platform { get; set; }
}