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