Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created February 10, 2020 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhinavPradeep/1d0173c04abec8ba8010176ba29e7456 to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/1d0173c04abec8ba8010176ba29e7456 to your computer and use it in GitHub Desktop.
namespace Theta.Customers.Models
{
public class Customer
{
public int _id;
public string FirstName;
public string LastName;
//public bool IsPremium;
public Address Address;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment