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