ActivityLogEntry.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using Microsoft.Extensions.Logging;
  3. namespace MediaBrowser.Model.Activity
  4. {
  5. public class ActivityLogEntry
  6. {
  7. /// <summary>
  8. /// Gets or sets the identifier.
  9. /// </summary>
  10. /// <value>The identifier.</value>
  11. public long Id { get; set; }
  12. /// <summary>
  13. /// Gets or sets the name.
  14. /// </summary>
  15. /// <value>The name.</value>
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// Gets or sets the overview.
  19. /// </summary>
  20. /// <value>The overview.</value>
  21. public string Overview { get; set; }
  22. /// <summary>
  23. /// Gets or sets the short overview.
  24. /// </summary>
  25. /// <value>The short overview.</value>
  26. public string ShortOverview { get; set; }
  27. /// <summary>
  28. /// Gets or sets the type.
  29. /// </summary>
  30. /// <value>The type.</value>
  31. public string Type { get; set; }
  32. /// <summary>
  33. /// Gets or sets the item identifier.
  34. /// </summary>
  35. /// <value>The item identifier.</value>
  36. public string ItemId { get; set; }
  37. /// <summary>
  38. /// Gets or sets the date.
  39. /// </summary>
  40. /// <value>The date.</value>
  41. public DateTime Date { get; set; }
  42. /// <summary>
  43. /// Gets or sets the user identifier.
  44. /// </summary>
  45. /// <value>The user identifier.</value>
  46. public Guid UserId { get; set; }
  47. /// <summary>
  48. /// Gets or sets the user primary image tag.
  49. /// </summary>
  50. /// <value>The user primary image tag.</value>
  51. public string UserPrimaryImageTag { get; set; }
  52. /// <summary>
  53. /// Gets or sets the log severity.
  54. /// </summary>
  55. /// <value>The log severity.</value>
  56. public LogLevel Severity { get; set; }
  57. }
  58. }