Created
October 27, 2012 10:42
-
-
Save mookid8000/3964165 to your computer and use it in GitHub Desktop.
DrugLord.Messages
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
namespace DrugLord.Messages | |
{ | |
public class MakeDeposit | |
{ | |
public Money Money { get; set; } | |
public Drugs Drugs { get; set; } | |
public string SecretCode { get; set; } | |
} | |
public class Money | |
{ | |
public Money(decimal amount, string transferId) | |
{ | |
Amount = amount; | |
TransferId = transferId; | |
} | |
public decimal Amount { get; private set; } | |
public string TransferId { get; private set; } | |
} | |
public class Drugs | |
{ | |
public Drugs(decimal amount, string transferId) | |
{ | |
Amount = amount; | |
TransferId = transferId; | |
} | |
public decimal Amount { get; private set; } | |
public string TransferId { get; private set; } | |
} | |
public class SecretCodeHasBeenGenerated | |
{ | |
public string Code { get; set; } | |
public SecretCodeHasBeenGenerated(string code) | |
{ | |
Code = code; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment