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; public bool IsConfirmed { get; set; } = false; }