mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Add ability to require refund email from app level * Add ability request refund email when creating invoice manually * Adjust labels * Add UI tests * Add Greenfield API support * Rename RequiresRefundEmailType to RequiresRefundEmail * Fix build Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
98 lines
2 KiB
C#
98 lines
2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BTCPayServer.Validation;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using BTCPayServer.Services.Apps;
|
|
|
|
namespace BTCPayServer.Models.InvoicingModels
|
|
{
|
|
public class CreateInvoiceModel
|
|
{
|
|
public decimal? Amount
|
|
{
|
|
get; set;
|
|
}
|
|
public string Currency
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[Required]
|
|
[DisplayName("Store Id")]
|
|
public string StoreId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("Order Id")]
|
|
public string OrderId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("Item Description")]
|
|
public string ItemDesc
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[Display(Name = "Default payment method on checkout")]
|
|
public string DefaultPaymentMethod
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("POS Data")]
|
|
public string PosData
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[EmailAddress]
|
|
[DisplayName("Buyer Email")]
|
|
public string BuyerEmail
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[Uri]
|
|
[DisplayName("Notification Url")]
|
|
public string NotificationUrl
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("Store")]
|
|
public SelectList Stores
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("Supported Transaction Currencies")]
|
|
public List<string> SupportedTransactionCurrencies
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[DisplayName("Available Payment Methods")]
|
|
public SelectList AvailablePaymentMethods
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[EmailAddress]
|
|
[DisplayName("Notification Email")]
|
|
public string NotificationEmail
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[Display(Name = "Require Refund Email")]
|
|
public RequiresRefundEmail RequiresRefundEmail
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|