mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
22 lines
487 B
C#
22 lines
487 B
C#
namespace Streetwriters.Common.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using System.Globalization;
|
|
|
|
public partial class GetCustomerResponse : PaddleResponse
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public PaddleCustomer Customer { get; set; }
|
|
}
|
|
|
|
public class PaddleCustomer
|
|
{
|
|
[JsonPropertyName("email")]
|
|
public string Email { get; set; }
|
|
}
|
|
}
|