#27 added confirm endpoint for stripe

This commit is contained in:
Dominic Villemure
2024-04-24 22:14:14 -04:00
parent 6883855ecb
commit cba08b0464
8 changed files with 498 additions and 0 deletions

View File

@@ -8,4 +8,5 @@ public class UserTransaction : BaseAuditableEntity
// Foreign key to ApplicationUser
public string ApplicationUserId { get; set; } = string.Empty;
public bool IsConfirmed { get; set; } = false;
}