Skip to content

Commit

Permalink
feat ✨ : add payment created dto
Browse files Browse the repository at this point in the history
  • Loading branch information
pasindu-pr committed Apr 26, 2023
1 parent f957f4f commit bcbde37
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Florage.Shared.Dtos.Payment
{
public class PublishPaymentCreatedDto
{
public string OrderId { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
}
}

0 comments on commit bcbde37

Please sign in to comment.