12 lines
438 B
C#
12 lines
438 B
C#
|
|
namespace BuyMeCofee.Maui.Constants;
|
||
|
|
|
||
|
|
public static class BmcConstants
|
||
|
|
{
|
||
|
|
public const string BaseUrl = "https://buymeacoffee.com/";
|
||
|
|
public const string DefaultButtonText = "Buy me a coffee";
|
||
|
|
public const string DefaultSupportButtonText = "Support";
|
||
|
|
public const double ButtonCornerRadius = 8.0;
|
||
|
|
public const double WidgetCornerRadius = 16.0;
|
||
|
|
public static readonly int[] DefaultSuggestedAmounts = [25, 50, 100];
|
||
|
|
}
|