/BlogEngine/DotNetSlave.BusinessLogic/Json/JsonTrash.cs

# · C# · 35 lines · 15 code · 5 blank · 15 comment · 0 complexity · 7c96eea0d67122678adf6e462c2632e2 MD5 · raw file

  1. namespace BlogEngine.Core.Json
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. public class JsonTrash
  8. {
  9. /// <summary>
  10. /// Deleted item ID
  11. /// </summary>
  12. public Guid Id { get; set; }
  13. /// <summary>
  14. /// Deleted item title
  15. /// </summary>
  16. public string Title { get; set; }
  17. /// <summary>
  18. /// Type of deleted object
  19. /// </summary>
  20. public string ObjectType { get; set; }
  21. /// <summary>
  22. /// Gets or sets the date portion of published date
  23. /// </summary>
  24. public string Date { get; set; }
  25. /// <summary>
  26. /// Gets or sets the time portion of published date
  27. /// </summary>
  28. public string Time { get; set; }
  29. }
  30. }