From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/Activity/ActivityLogEntry.cs | 68 ------------------------- 1 file changed, 68 deletions(-) delete mode 100644 MediaBrowser.Model/Activity/ActivityLogEntry.cs (limited to 'MediaBrowser.Model/Activity/ActivityLogEntry.cs') diff --git a/MediaBrowser.Model/Activity/ActivityLogEntry.cs b/MediaBrowser.Model/Activity/ActivityLogEntry.cs deleted file mode 100644 index 686578610..000000000 --- a/MediaBrowser.Model/Activity/ActivityLogEntry.cs +++ /dev/null @@ -1,68 +0,0 @@ -using MediaBrowser.Model.Logging; -using System; - -namespace MediaBrowser.Model.Activity -{ - public class ActivityLogEntry - { - /// - /// Gets or sets the identifier. - /// - /// The identifier. - public string Id { get; set; } - - /// - /// Gets or sets the name. - /// - /// The name. - public string Name { get; set; } - - /// - /// Gets or sets the overview. - /// - /// The overview. - public string Overview { get; set; } - - /// - /// Gets or sets the short overview. - /// - /// The short overview. - public string ShortOverview { get; set; } - - /// - /// Gets or sets the type. - /// - /// The type. - public string Type { get; set; } - - /// - /// Gets or sets the item identifier. - /// - /// The item identifier. - public string ItemId { get; set; } - - /// - /// Gets or sets the date. - /// - /// The date. - public DateTime Date { get; set; } - - /// - /// Gets or sets the user identifier. - /// - /// The user identifier. - public string UserId { get; set; } - - /// - /// Gets or sets the user primary image tag. - /// - /// The user primary image tag. - public string UserPrimaryImageTag { get; set; } - - /// - /// Gets or sets the log severity. - /// - /// The log severity. - public LogSeverity Severity { get; set; } - } -} -- cgit v1.2.3