15 lines
352 B
C#
15 lines
352 B
C#
namespace Hutopy.Web.Features.Wallets;
|
|
|
|
public class UserTransactionDto
|
|
{
|
|
public required decimal Amount { get; init; }
|
|
|
|
public string Currency { get; init; } = "cad";
|
|
|
|
public string TipMessage { get; init; } = string.Empty;
|
|
|
|
public DateTimeOffset Created { get; init; }
|
|
|
|
public bool IsConfirmed { get; init; }
|
|
}
|