mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Editorconfig: Add space_before_self_closing setting This was a difference between the way dotnet-format and Rider format code. See https://www.jetbrains.com/help/rider/EditorConfig_Index.html * Editorconfig: Keep 4 spaces indentation for Swagger JSON files They are all formatted that way, let's keep it like that. * Apply dotnet-format, mostly white-space related changes
107 lines
3.7 KiB
C#
107 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Payments;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class PullPaymentsModel : BasePagingViewModel
|
|
{
|
|
public class PullPaymentModel
|
|
{
|
|
public class ProgressModel
|
|
{
|
|
public int CompletedPercent { get; set; }
|
|
public int AwaitingPercent { get; set; }
|
|
public string CompletedFormatted { get; set; }
|
|
public string AwaitingFormatted { get; set; }
|
|
public string LimitFormatted { get; set; }
|
|
public string ResetIn { get; set; }
|
|
public string EndIn { get; set; }
|
|
public decimal Awaiting { get; set; }
|
|
public decimal Completed { get; set; }
|
|
public decimal Limit { get; set; }
|
|
}
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string ProgressText { get; set; }
|
|
public ProgressModel Progress { get; set; }
|
|
public DateTimeOffset StartDate { get; set; }
|
|
public DateTimeOffset? EndDate { get; set; }
|
|
public bool AutoApproveClaims { get; set; }
|
|
public bool Archived { get; set; } = false;
|
|
}
|
|
|
|
public List<PullPaymentModel> PullPayments { get; set; } = new List<PullPaymentModel>();
|
|
public override int CurrentPageCount => PullPayments.Count;
|
|
public string PaymentMethodId { get; set; }
|
|
public IEnumerable<PaymentMethodId> PaymentMethods { get; set; }
|
|
public PullPaymentState ActiveState { get; set; } = PullPaymentState.Active;
|
|
}
|
|
|
|
public class NewPullPaymentModel
|
|
{
|
|
[MaxLength(30)]
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
[Required]
|
|
public decimal Amount
|
|
{
|
|
get; set;
|
|
}
|
|
[Required]
|
|
[ReadOnly(true)]
|
|
public string Currency { get; set; }
|
|
[MaxLength(500)]
|
|
[Display(Name = "Custom CSS URL")]
|
|
public string CustomCSSLink { get; set; }
|
|
[Display(Name = "Custom CSS Code")]
|
|
public string EmbeddedCSS { get; set; }
|
|
|
|
[Display(Name = "Payment Methods")]
|
|
public IEnumerable<string> PaymentMethods { get; set; }
|
|
public IEnumerable<SelectListItem> PaymentMethodItems { get; set; }
|
|
[Display(Name = "Minimum acceptable expiration time for BOLT11 for refunds")]
|
|
[Range(1, 365 * 10)]
|
|
public long BOLT11Expiration { get; set; } = 30;
|
|
[Display(Name = "Automatically approve claims")]
|
|
public bool AutoApproveClaims { get; set; } = false;
|
|
}
|
|
|
|
public class UpdatePullPaymentModel
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public UpdatePullPaymentModel()
|
|
{
|
|
}
|
|
|
|
public UpdatePullPaymentModel(Data.PullPaymentData data)
|
|
{
|
|
if (data == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Id = data.Id;
|
|
var blob = data.GetBlob();
|
|
Name = blob.Name;
|
|
Description = blob.Description;
|
|
CustomCSSLink = blob.View.CustomCSSLink;
|
|
EmbeddedCSS = blob.View.EmbeddedCSS;
|
|
}
|
|
|
|
[MaxLength(30)]
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
[Display(Name = "Custom CSS URL")]
|
|
public string CustomCSSLink { get; set; }
|
|
[Display(Name = "Custom CSS Code")]
|
|
public string EmbeddedCSS { get; set; }
|
|
}
|
|
}
|