diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-20 08:47:05 -0700 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-11-20 08:47:05 -0700 |
| commit | ea355b4262fa0b817930d2bb751c05e6e0ee3022 (patch) | |
| tree | 6e1b380c8e9936f64ef6a020805074dfe2f3340b /Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs | |
| parent | 17a273d2372a200a95a22a016fca6c0c65de7a54 (diff) | |
Remove ClientLog endpoints
Diffstat (limited to 'Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/ClientLogDtos/ClientLogEventDto.cs | 30 |
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; - } -} |
