btcpayserver/BTCPayServer/Models/StoreViewModels/TokensViewModel.cs

73 lines
947 B
C#
Raw Normal View History

2017-09-13 08:47:34 +02:00
using BTCPayServer.Validations;
using Microsoft.AspNetCore.Mvc.Rendering;
2017-09-13 08:47:34 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
2017-09-13 16:50:36 +02:00
namespace BTCPayServer.Models.StoreViewModels
2017-09-13 08:47:34 +02:00
{
2017-09-13 09:56:33 +02:00
public class CreateTokenViewModel
2017-09-13 08:47:34 +02:00
{
[PubKeyValidatorAttribute]
public string PublicKey
{
get; set;
}
2017-09-13 08:47:34 +02:00
public string Label
{
get; set;
}
[Required]
public string Facade
{
get; set;
}
[Required]
public string StoreId
{
get; set;
}
public SelectList Stores
{
get; set;
}
2017-09-13 08:47:34 +02:00
}
public class TokenViewModel
{
public string Id
{
get; set;
}
public string Label
{
get; set;
}
public string SIN
{
get; set;
}
public string Facade
{
get; set;
}
}
public class TokensViewModel
{
public TokenViewModel[] Tokens
{
get; set;
}
public string StatusMessage
{
get;
set;
}
}
}