Last active
August 14, 2021 09:06
-
-
Save jiimaho/0b71e04371be66a68089daedc2178382 to your computer and use it in GitHub Desktop.
Models
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
| public class CustomerIntegrationModel | |
| { | |
| public string CustomerId { get; set; } | |
| public string Name { get; set; } | |
| } | |
| public class CustomerRequestModel | |
| { | |
| public string CustomerId { get; set; } | |
| public string Name { get; set; } | |
| } | |
| public class CustomerDomainModel | |
| { | |
| public string CustomerId { get; set; } | |
| public string Name { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment