mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Server Settings: Consolidate Storage and Files * Improve storage options name display * Remove file services from services page * Remove more code
19 lines
446 B
C#
19 lines
446 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Storage.Models
|
|
{
|
|
public enum StorageProvider
|
|
{
|
|
[Display(Name = "Azure Blob Storage")]
|
|
AzureBlobStorage = 0,
|
|
|
|
[Display(Name = "Amazon S3")]
|
|
AmazonS3 = 1,
|
|
|
|
[Display(Name = "Google Cloud Storage")]
|
|
GoogleCloudStorage = 2,
|
|
|
|
[Display(Name = "Local File System")]
|
|
FileSystem = 3
|
|
}
|
|
}
|