mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
13 lines
364 B
C#
13 lines
364 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class ViewFilesViewModel
|
|
{
|
|
public List<StoredFile> Files { get; set; }
|
|
public string DirectFileUrl { get; set; }
|
|
public string SelectedFileId { get; set; }
|
|
public bool StorageConfigured { get; set; }
|
|
}
|
|
}
|