mirror of
https://github.com/ezhevita/YandexKeyExtractor
synced 2025-08-16 19:40:48 +07:00
10 lines
212 B
C#
10 lines
212 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexKeyExtractor.Models;
|
|
|
|
public class PhoneNumberResponse : StatusResponse
|
|
{
|
|
[JsonPropertyName("number")]
|
|
public PhoneNumberInfo? PhoneNumber { get; set; }
|
|
}
|