12 lines
351 B
C#
12 lines
351 B
C#
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;
|
|
}
|