namespace BuyMeCofee.Maui; /// /// Configuration options for the Buy Me a Coffee library. /// public class BmcOptions { /// /// Your Buy Me a Coffee API access token (from https://developers.buymeacoffee.com). /// Required for supporter verification. This is the creator's token. /// public string? AccessToken { get; set; } /// /// How long to cache the supporter list before re-fetching. Default: 1 hour. /// public TimeSpan CacheDuration { get; set; } = TimeSpan.FromHours(1); }