-
-
Save dcomartin/b39435d9f1b3165d107d447d8875dcd1 to your computer and use it in GitHub Desktop.
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
public class PlaceOrderCommand : ICommand | |
{ | |
public string BuyerId { get; set; } | |
public Address Address { get; set; } | |
public List<OrderItem> Items { get; set; } | |
public CreditCardEncrypted CreditCard { get; set; } | |
public class CreditCardEncrypted | |
{ | |
public EncryptedString Number { get; set; } | |
public EncryptedString Expiry { get; set; } | |
public EncryptedString Cvv { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment