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; }