Skip to content

Instantly share code, notes, and snippets.

@devnetfx
devnetfx / Dossier.cs
Created July 7, 2011 12:13
Draft for Dossier
using System;
using System.Collections.Generic;
namespace Macto
{
public class Dossier
{
public Inmate Inmate { get; private set; }
public ICollection<Warrant> Warrants { get; set; }
public ICollection<Note> Notes { get; set; }
@csainty
csainty / Inmate.cs
Created July 5, 2011 03:56
Draft Inmate model for Macto
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Macto
{
public class Inmate
{
public int Id { get; set; }