#27 added userTransactions

This commit is contained in:
Dominic Villemure
2024-04-22 15:55:49 -04:00
parent cbde9838d1
commit b63d53f109
17 changed files with 696 additions and 28 deletions

View File

@@ -0,0 +1,11 @@
namespace Hutopy.Domain.Entities;
public class UserTransaction : BaseAuditableEntity
{
public decimal Amount { get; set; }
public string Currency { get; set; } = "CAD";
public string TipMessage { get; set; } = string.Empty;
// Foreign key to ApplicationUser
public string ApplicationUserId { get; set; } = string.Empty;
}