Created
April 30, 2024 17:00
-
-
Save paulohenriquesn/13b8ecf11ed32e163e5007adba8f6f90 to your computer and use it in GitHub Desktop.
wise loca.cs
This file contains hidden or 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
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