11 lines
234 B
C#
11 lines
234 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Utils;
|
|
|
|
namespace Core.Models.Eft.Profile;
|
|
|
|
public class GetOtherProfileRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("accountId")]
|
|
public string? AccountId { get; set; }
|
|
}
|