Skip to content

Instantly share code, notes, and snippets.

@jasonmccay
Created October 9, 2011 05:05
Show Gist options
  • Save jasonmccay/1273326 to your computer and use it in GitHub Desktop.
Save jasonmccay/1273326 to your computer and use it in GitHub Desktop.
Adding DeveloperModel.cs to the Models directory.
using System.Collections.Generic;
using mongohq_csharp.Models.DTO;
namespace mongohq_csharp.Models
{
public class DeveloperModel
{
public IList<DeveloperDTO> developers { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment