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 --- .../Security/AuthenticationInfo.cs | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100644 MediaBrowser.Controller/Security/AuthenticationInfo.cs (limited to 'MediaBrowser.Controller/Security/AuthenticationInfo.cs') diff --git a/MediaBrowser.Controller/Security/AuthenticationInfo.cs b/MediaBrowser.Controller/Security/AuthenticationInfo.cs deleted file mode 100644 index c2d4a39d1..000000000 --- a/MediaBrowser.Controller/Security/AuthenticationInfo.cs +++ /dev/null @@ -1,67 +0,0 @@ -using System; - -namespace MediaBrowser.Controller.Security -{ - public class AuthenticationInfo - { - /// - /// Gets or sets the identifier. - /// - /// The identifier. - public string Id { get; set; } - - /// - /// Gets or sets the access token. - /// - /// The access token. - public string AccessToken { get; set; } - - /// - /// Gets or sets the device identifier. - /// - /// The device identifier. - public string DeviceId { get; set; } - - /// - /// Gets or sets the name of the application. - /// - /// The name of the application. - public string AppName { get; set; } - - /// - /// Gets or sets the application version. - /// - /// The application version. - public string AppVersion { get; set; } - - /// - /// Gets or sets the name of the device. - /// - /// The name of the device. - public string DeviceName { get; set; } - - /// - /// Gets or sets the user identifier. - /// - /// The user identifier. - public string UserId { get; set; } - - /// - /// Gets or sets a value indicating whether this instance is active. - /// - /// true if this instance is active; otherwise, false. - public bool IsActive { get; set; } - - /// - /// Gets or sets the date created. - /// - /// The date created. - public DateTime DateCreated { get; set; } - - /// - /// Gets or sets the date revoked. - /// - /// The date revoked. - public DateTime? DateRevoked { get; set; } - } -} -- cgit v1.2.3