Files
btcpayserver/BTCPayServer/Views/Wallets/TakeViewModel.cs
nicolas.dorier b0cb92696a atomic swap
2018-10-10 01:05:24 +09:00

19 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using BTCPayServer.Validation;
using Microsoft.AspNetCore.Mvc.Rendering;
namespace BTCPayServer.Views.Wallets
{
public class TakeViewModel
{
[Display(Name = "Maker's URI")]
[UriAttribute]
[Required]
public string MakerUri { get; set; }
}
}