Adds edition of user profile
This commit is contained in:
14
src/Web/Features/Wallets/UserTransactionDto.cs
Normal file
14
src/Web/Features/Wallets/UserTransactionDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user