mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
8 lines
203 B
C#
8 lines
203 B
C#
namespace NftFaucet.Constants;
|
|
|
|
public static class UploadConstants
|
|
{
|
|
public const int MaxFileSizeInMegabytes = 20;
|
|
public const long MaxFileSizeInBytes = MaxFileSizeInMegabytes * 1024 * 1024;
|
|
}
|