/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Reports/RptAccesos.cs

http://blpm.googlecode.com/ · C# · 22 lines · 18 code · 3 blank · 1 comment · 0 complexity · df745d0abdd13ed17b034123792a5ef5 MD5 · raw file

  1. using System;
  2. using EDUAR_Entities.Shared;
  3. namespace EDUAR_Entities.Reports
  4. {
  5. [Serializable]
  6. public class RptAccesos : DTBase
  7. {
  8. public string pagina { get; set; }
  9. public DateTime fecha { get; set; }
  10. //public string username { get; set; }
  11. public string rol { get; set; }
  12. public int accesos { get; set; }
  13. public RptAccesos()
  14. {
  15. }
  16. ~RptAccesos()
  17. { }
  18. }
  19. }