Limited
2
0
Files
bmc.maui/BuyMeCofee.Maui/BmcConfiguration.cs

16 lines
460 B
C#
Raw Normal View History

using BuyMeCofee.Maui.Services;
namespace BuyMeCofee.Maui;
/// <summary>
/// Static configuration holder for the Buy Me a Coffee library.
/// Populated by <see cref="BuyMeACoffeeExtensions.UseBuyMeACoffee"/>.
/// </summary>
public static class BmcConfiguration
{
/// <summary>
/// The supporter lookup service. Null if no AccessToken was configured.
/// </summary>
public static BmcSupporterService? SupporterService { get; internal set; }
}