Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created February 10, 2020 10:43
Show Gist options
  • Save AbhinavPradeep/a7c1b29f8b0c25f9e200d12d395400b7 to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/a7c1b29f8b0c25f9e200d12d395400b7 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