Limited
2
0
Files
bmc.maui/BuyMeCofee.Maui/Models/SupportRequestedEventArgs.cs

11 lines
307 B
C#
Raw Normal View History

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; }
}