Files
groundsforsupport.stevanfre…/src/GroundsForSupport.Server/Payments/Payment.cs
T

10 lines
295 B
C#
Raw Normal View History

2026-01-04 21:12:53 -06:00
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; }
}