Skip to content

Instantly share code, notes, and snippets.

@ravendb
ravendb / Northwind.cs
Last active October 28, 2020 17:27
C# classes for the RavenDB northwind sample data
namespace Orders
{
public class Company
{
public string Id { get; set; }
public string ExternalId { get; set; }
public string Name { get; set; }
public Contact Contact { get; set; }
public Address Address { get; set; }
public string Phone { get; set; }