Skip to content

Commit

Permalink
Merge pull request #65 from PasinduPrabhashitha/async-messaging
Browse files Browse the repository at this point in the history
feat ✨ : add publish create order dto
  • Loading branch information
pasindu-pr authored Apr 19, 2023
2 parents b87858e + 30bc39a commit 8cd324c
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Florage.Shared.Dtos.Orders
{
internal class PublishCreateOrderDto
{
public string Id { get; set; } = string.Empty;
public string? UserId { get; set; }
public float TotalPrice { get; set; }
}
}

0 comments on commit 8cd324c

Please sign in to comment.