aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-11-21 23:57:13 +0100
committerGitHub <noreply@github.com>2021-11-21 23:57:13 +0100
commit39e6658d01e10609c460fb92a7af583e4d04caab (patch)
tree18f12cc9d039dc21c7d4cf95a39cfe81eb724d0b /Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs
parent8f051c86f7d1f02c9a0d917cf0d0ed52aa88ce6b (diff)
parentea355b4262fa0b817930d2bb751c05e6e0ee3022 (diff)
Merge pull request #6879 from crobibero/client-log-cleanup
Remove ClientLog endpoints
Diffstat (limited to 'Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs')
-rw-r--r--Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs b/Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs
deleted file mode 100644
index 9bf9be0a4..000000000
--- a/Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;
-using System.ComponentModel.DataAnnotations;
-using Microsoft.Extensions.Logging;
-
-namespace Jellyfin.Api.Models.ClientLogDtos
-{
- /// <summary>
- /// The client log dto.
- /// </summary>
- public class ClientLogEventDto
- {
- /// <summary>
- /// Gets or sets the event timestamp.
- /// </summary>
- [Required]
- public DateTime Timestamp { get; set; }
-
- /// <summary>
- /// Gets or sets the log level.
- /// </summary>
- [Required]
- public LogLevel Level { get; set; }
-
- /// <summary>
- /// Gets or sets the log message.
- /// </summary>
- [Required]
- public string Message { get; set; } = string.Empty;
- }
-}