mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
21 lines
469 B
C#
21 lines
469 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Streetwriters.Common.Models
|
|
{
|
|
public partial class RefundPaymentResponse
|
|
{
|
|
[JsonPropertyName("success")]
|
|
public bool Success { get; set; }
|
|
|
|
[JsonPropertyName("response")]
|
|
public required Refund Refund { get; set; }
|
|
}
|
|
|
|
public partial class Refund
|
|
{
|
|
[JsonPropertyName("refund_request_id")]
|
|
public long RefundRequestId { get; set; }
|
|
}
|
|
}
|