From 6d8062116cc89a66a66352a8ed44cfad2f3a00ba Mon Sep 17 00:00:00 2001 From: Patrick Barron Date: Tue, 6 Feb 2024 10:15:29 -0500 Subject: Remove some unused model code --- MediaBrowser.Model/ClientLog/ClientLogEvent.cs | 75 -------------------------- 1 file changed, 75 deletions(-) delete mode 100644 MediaBrowser.Model/ClientLog/ClientLogEvent.cs (limited to 'MediaBrowser.Model/ClientLog/ClientLogEvent.cs') diff --git a/MediaBrowser.Model/ClientLog/ClientLogEvent.cs b/MediaBrowser.Model/ClientLog/ClientLogEvent.cs deleted file mode 100644 index 21087b564..000000000 --- a/MediaBrowser.Model/ClientLog/ClientLogEvent.cs +++ /dev/null @@ -1,75 +0,0 @@ -using System; -using Microsoft.Extensions.Logging; - -namespace MediaBrowser.Model.ClientLog -{ - /// - /// The client log event. - /// - public class ClientLogEvent - { - /// - /// Initializes a new instance of the class. - /// - /// The log timestamp. - /// The log level. - /// The user id. - /// The client name. - /// The client version. - /// The device id. - /// The message. - public ClientLogEvent( - DateTime timestamp, - LogLevel level, - Guid? userId, - string clientName, - string clientVersion, - string deviceId, - string message) - { - Timestamp = timestamp; - UserId = userId; - ClientName = clientName; - ClientVersion = clientVersion; - DeviceId = deviceId; - Message = message; - Level = level; - } - - /// - /// Gets the event timestamp. - /// - public DateTime Timestamp { get; } - - /// - /// Gets the log level. - /// - public LogLevel Level { get; } - - /// - /// Gets the user id. - /// - public Guid? UserId { get; } - - /// - /// Gets the client name. - /// - public string ClientName { get; } - - /// - /// Gets the client version. - /// - public string ClientVersion { get; } - - /// - /// - /// Gets the device id. - /// - public string DeviceId { get; } - - /// - /// Gets the log message. - /// - public string Message { get; } - } -} -- cgit v1.2.3