btcpayserver/BTCPayServer/Models/StoreViewModels/TokensViewModel.cs

68 lines
1.3 KiB
C#
Raw Normal View History

2018-11-06 15:38:07 +09:00
using BTCPayServer.Validation;
using Microsoft.AspNetCore.Mvc.Rendering;
2017-09-13 15:47:34 +09:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
2017-09-13 23:50:36 +09:00
namespace BTCPayServer.Models.StoreViewModels
2017-09-13 15:47:34 +09:00
{
public class CreateTokenViewModel
{
[PubKeyValidatorAttribute]
public string PublicKey
{
get; set;
}
public string Label
{
get; set;
}
2017-09-13 15:47:34 +09:00
[Required]
public string StoreId
{
get; set;
}
public SelectList Stores
{
get; set;
}
}
public class TokenViewModel
{
public string Id
{
get; set;
}
public string Label
{
get; set;
}
public string SIN
{
get; set;
}
}
public class TokensViewModel
2017-09-13 15:47:34 +09:00
{
public TokenViewModel[] Tokens
{
get; set;
}
public string StatusMessage
{
get;
set;
}
[Display(Name = "API Key")]
public string ApiKey { get; set; }
public string EncodedApiKey { get; set; }
public bool StoreNotConfigured { get; set; }
}
2017-09-13 15:47:34 +09:00
}