2022-06-15 14:06:16 +02:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
2020-06-28 21:44:35 -05:00
|
|
|
namespace BTCPayServer.Storage.Models
|
2019-04-22 09:41:20 +02:00
|
|
|
{
|
|
|
|
public enum StorageProvider
|
|
|
|
{
|
2022-06-15 14:06:16 +02:00
|
|
|
[Display(Name = "Azure Blob Storage")]
|
2020-06-28 17:55:27 +09:00
|
|
|
AzureBlobStorage = 0,
|
2023-01-06 14:18:07 +01:00
|
|
|
|
2022-06-15 14:06:16 +02:00
|
|
|
[Display(Name = "Amazon S3")]
|
2020-06-28 17:55:27 +09:00
|
|
|
AmazonS3 = 1,
|
2023-01-06 14:18:07 +01:00
|
|
|
|
2022-06-15 14:06:16 +02:00
|
|
|
[Display(Name = "Google Cloud Storage")]
|
2020-06-28 17:55:27 +09:00
|
|
|
GoogleCloudStorage = 2,
|
2023-01-06 14:18:07 +01:00
|
|
|
|
2022-06-15 14:06:16 +02:00
|
|
|
[Display(Name = "Local File System")]
|
2020-06-28 17:55:27 +09:00
|
|
|
FileSystem = 3
|
2019-04-22 09:41:20 +02:00
|
|
|
}
|
2019-04-22 16:45:50 +09:00
|
|
|
}
|