view Agendas/trunk/src/Agendas.Domain/Identificable.cs @ 300:48ab8788bd19

#200: Patrocinadores: Agregar link al sitio web.
author juanjose.montesdeocaarbos
date Mon, 27 Feb 2012 14:45:12 -0300
parents db4b1e2cae49
children
line wrap: on
line source

using System;

namespace AltNetHispano.Agendas.Domain
{
	public abstract class Identificable
	{
		public virtual Guid Id { get; private set; }
	}
}