btcpayserver/BTCPayServer/Models/ServerViewModels/ViewFilesViewModel.cs
Ayush Jain 2dfb637e2f
Enhance files actions to accept arrays of fileids (#2735)
* 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
2021-08-09 23:40:55 +09:00

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; }
}
}