/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EDUAR_Entities.Shared;
  6. namespace EDUAR_Entities
  7. {
  8. [Serializable]
  9. public class TipoEventoAgenda: DTBase
  10. {
  11. public int idTipoEventoAgenda { get; set; }
  12. public string descripcion { get; set; }
  13. public TipoEventoAgenda()
  14. {
  15. descripcion = string.Empty;
  16. }
  17. }
  18. }