using System.Text.Json.Serialization; namespace PlaylistShared.Shared.DTO; public class ExternalLoginCallbackRequest { [JsonPropertyName("code")] public string Code { get; set; } = null!; [JsonPropertyName("state")] public string State { get; set; } = null!; }