Skip to content

Commit bcbde37

Browse files
committed
feat ✨ : add payment created dto
1 parent f957f4f commit bcbde37

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace Florage.Shared.Dtos.Payment
2+
{
3+
public class PublishPaymentCreatedDto
4+
{
5+
public string OrderId { get; set; } = string.Empty;
6+
public string UserName { get; set; } = string.Empty;
7+
public string Email { get; set; } = string.Empty;
8+
public string PhoneNumber { get; set; } = string.Empty;
9+
}
10+
}

0 commit comments

Comments
 (0)