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