-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved the capturing of phone number ordering responses and updated…
… the purchased phone numbers page to be more useful.
- Loading branch information
1 parent
457d4dc
commit e9b0435
Showing
5 changed files
with
59 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using AccelerateNetworks.Operations; | ||
|
||
namespace NumberSearch.Ops.Models | ||
{ | ||
public class PurchasedResult | ||
{ | ||
public PurchasedPhoneNumber PurchasedPhoneNumber { get; set; } = new(); | ||
public PurchasedPhoneNumber[] PurchasedPhoneNumbers { get; set; } = []; | ||
public OwnedPhoneNumber[] Owned { get; set; } = []; | ||
public string Message { get; set; } = string.Empty; | ||
public string AlertType { get; set; } = string.Empty; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters