Create a .NET MAUI library for Buy Me a Coffee integration with branded button, QR code, and widget controls. Includes 8 theme presets (yellow, black, white, blue, violet, orange, red, green), customizable styling, and SkiaSharp-based rendering. Supports opening BMC pages in browser and generating QR codes for donations.
11 lines
307 B
C#
11 lines
307 B
C#
namespace BuyMeCofee.Maui.Models;
|
|
|
|
public class SupportRequestedEventArgs : EventArgs
|
|
{
|
|
public string Username { get; init; } = string.Empty;
|
|
public int Amount { get; init; }
|
|
public string? Name { get; init; }
|
|
public string? Message { get; init; }
|
|
public bool IsMonthly { get; init; }
|
|
}
|