/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataTransferObject/Entities/Package Agenda/TipoEventoAgenda.cs
http://blpm.googlecode.com/ · C# · 20 lines · 18 code · 2 blank · 0 comment · 0 complexity · ff8c9ee0f1a41113ce8959dc697023cf MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EDUAR_Entities.Shared;
-
- namespace EDUAR_Entities
- {
- [Serializable]
- public class TipoEventoAgenda: DTBase
- {
- public int idTipoEventoAgenda { get; set; }
- public string descripcion { get; set; }
-
- public TipoEventoAgenda()
- {
- descripcion = string.Empty;
- }
- }
- }