view Agendas/trunk/src/Agendas.Domain/Identificable.cs @ 225:f23ee59ef1bd

Otros ponentes
author nelopauselli
date Mon, 26 Sep 2011 08:47:01 -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; }
	}
}