mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
15 lines
399 B
C#
15 lines
399 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Storage.Models;
|
|
|
|
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; }
|
|
}
|
|
}
|