fix types

This commit is contained in:
CWX
2025-01-23 23:20:06 +00:00
parent 7fce98389f
commit c8b186586e
2 changed files with 5 additions and 1 deletions
@@ -13,4 +13,7 @@ public record FriendRequestData : IRequestData
[JsonPropertyName("retryAfter")]
public int? RetryAfter { get; set; }
[JsonPropertyName("to")]
public string? To { get; set; }
}
@@ -1,11 +1,12 @@
using System.Text.Json.Serialization;
using Core.Models.Enums;
namespace Core.Models.Eft.Dialog;
public record FriendRequestSendResponse
{
[JsonPropertyName("status")]
public int? Status { get; set; }
public BackendErrorCodes? Status { get; set; }
[JsonPropertyName("requestId")]
public string? RequestId { get; set; }