feat(client): add payment components

This commit is contained in:
Stevan Freeborn
2026-01-04 21:12:53 -06:00
parent 4e18abfa3d
commit 26f163d878
9 changed files with 377 additions and 111 deletions
@@ -0,0 +1,10 @@
namespace GroundsForSupport.Server.Payments;
internal sealed class Payment
{
public required string Id { get; init; }
public required string Name { get; init; }
public required long Amount { get; init; }
public string? Message { get; init; }
public long CreatedAtUnix { get; init; }
}