Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save paulohenriquesn/13b8ecf11ed32e163e5007adba8f6f90 to your computer and use it in GitHub Desktop.
Save paulohenriquesn/13b8ecf11ed32e163e5007adba8f6f90 to your computer and use it in GitHub Desktop.
wise loca.cs
class Address
{
public string City { get; set; }
public string PostalCode { get; set; }
}
class Currency
{
public string Code { get; set; }
}
interface TransferType
{
}
class RecipientSwift : Recipient
{
public Address Address { get; set; }
RecipientSwift(string firstName, string lastName, Address address) : base(firstName, lastName)
{
Address = address;
}
}
class Recipient
{
public string FirstName { get; set; }
public string LastName { get; set; }
Recipient(string firstName, string lastName)
{
FirstName = firstName;
LastName = lastName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment