ActivityLogEntry.cs 1.9 KB

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