Skip to content

Instantly share code, notes, and snippets.

@mookid8000
Created October 27, 2012 10:42
Show Gist options
  • Save mookid8000/3964165 to your computer and use it in GitHub Desktop.
Save mookid8000/3964165 to your computer and use it in GitHub Desktop.
DrugLord.Messages
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