mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
5b3b96b372
* GreenField: Payment Requests CRUD * fixes * fix swagger * fix swag * rebase fixes * Add new permissions for payment requests * Adapt PR to archive * fix tst * add to contains policxy * make decimals returned as string due to avoid shitty language parsing issues * do not register decimal json converter as global * fix cultureinfo for json covnerter * pr changes * add json convertet test * fix json test * fix rebase
26 lines
584 B
C#
26 lines
584 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using BTCPayServer.Client.Models;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class PaymentRequestData
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTimeOffset Created
|
|
{
|
|
get; set;
|
|
}
|
|
public string StoreDataId { get; set; }
|
|
public bool Archived { get; set; }
|
|
|
|
public StoreData StoreData { get; set; }
|
|
|
|
public Client.Models.PaymentRequestData.PaymentRequestStatus Status { get; set; }
|
|
|
|
public byte[] Blob { get; set; }
|
|
|
|
}
|
|
}
|