Skip to content

Instantly share code, notes, and snippets.

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