Files
RRAC/RecRoomArchive.Models/API/Players/PhoneNumberDTO.cs
splootybean 387ec7ba89 Initialize repository
Added basic info to get in game for like...August 2016 ;-;
It's not much but it's a start
2026-02-27 00:58:13 -08:00

9 lines
237 B
C#

using System.Text.Json.Serialization;
namespace RecRoomArchive.Models.API.Players
{
public class PhoneNumberDTO
{
[JsonPropertyName(name: "PhoneNumber")] public string PhoneNumber { get; set; } = string.Empty;
}
}