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