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