mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
10 lines
193 B
C#
10 lines
193 B
C#
namespace BTCPayServer.Storage.Models
|
|
{
|
|
public enum StorageProvider
|
|
{
|
|
AzureBlobStorage = 0,
|
|
AmazonS3 = 1,
|
|
GoogleCloudStorage = 2,
|
|
FileSystem = 3
|
|
}
|
|
}
|