Skip to content

Commit

Permalink
feat ✨ : add publish order confirmed dto
Browse files Browse the repository at this point in the history
  • Loading branch information
pasindu-pr committed Apr 23, 2023
1 parent 91ab2e9 commit 507c981
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace Florage.Shared.Dtos.Notifications
{
public class PublishOrderConfirmedDto
{
public string OrderId { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string UserEmail { get; set; } = string.Empty;
public string UserPhoneNumber { get; set; } = string.Empty;
public float Price { get; set; }
}
}

0 comments on commit 507c981

Please sign in to comment.