mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
2dfb637e2f
* Enhanced Files action by modifying it to accept a list of SelectedFileIds * Added checks to verify all files passed to the files action exist, Updated tests * Enhanced Files action to accept an array of fileIds * Removed redundant fileId list
13 lines
336 B
C#
13 lines
336 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class ViewFilesViewModel
|
|
{
|
|
public List<StoredFile> Files { get; set; }
|
|
public Dictionary<string, string> DirectUrlByFiles { get; set; }
|
|
public bool StorageConfigured { get; set; }
|
|
}
|
|
}
|