Add RTL support

This commit is contained in:
nicolas.dorier
2019-02-22 15:06:52 +09:00
parent 0d2c9fe377
commit b5d55a2066
7 changed files with 81 additions and 21 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.ServerViewModels
{
public class LightningWalletServices
{
public string ServiceLink { get; set; }
public bool ShowQR { get; set; }
public string WalletName { get; internal set; }
}
}