mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
14 lines
387 B
C#
14 lines
387 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Storage.Models;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace BTCPayServer.Storage.ViewModels
|
|
{
|
|
public class ChooseStorageViewModel
|
|
{
|
|
public IEnumerable<SelectListItem> ProvidersList { get; set; }
|
|
public StorageProvider Provider { get; set; }
|
|
public bool ShowChangeWarning { get; set; }
|
|
}
|
|
}
|