Skip to content

Instantly share code, notes, and snippets.

@jiimaho
Last active August 14, 2021 09:06
Show Gist options
  • Select an option

  • Save jiimaho/0b71e04371be66a68089daedc2178382 to your computer and use it in GitHub Desktop.

Select an option

Save jiimaho/0b71e04371be66a68089daedc2178382 to your computer and use it in GitHub Desktop.
Models
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