Skip to content

Instantly share code, notes, and snippets.

@jochenjonc
jochenjonc / DummyEntity.cs
Created February 17, 2012 11:06
Test that shows a bug when using AutoMapper with Castle Windsor 3.0
namespace WindsorAutoMapper
{
public class DummyEntity
{
public string Name { get; set; }
public string FirstName { get; set; }
}
}