From b7867214ef317bbf6502e53701a990ec5f13b645 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 11 Aug 2017 17:55:48 -0400 Subject: update download error handling --- MediaBrowser.Model/ApiClient/IDevice.cs | 44 --------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 MediaBrowser.Model/ApiClient/IDevice.cs (limited to 'MediaBrowser.Model/ApiClient/IDevice.cs') diff --git a/MediaBrowser.Model/ApiClient/IDevice.cs b/MediaBrowser.Model/ApiClient/IDevice.cs deleted file mode 100644 index 7b67122fb..000000000 --- a/MediaBrowser.Model/ApiClient/IDevice.cs +++ /dev/null @@ -1,44 +0,0 @@ -using MediaBrowser.Model.Devices; -using System; -using System.Collections.Generic; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Model.ApiClient -{ - public interface IDevice - { - /// - /// Occurs when [resume from sleep]. - /// - event EventHandler ResumeFromSleep; - /// - /// Gets the name of the device. - /// - /// The name of the device. - string DeviceName { get; } - /// - /// Gets the device identifier. - /// - /// The device identifier. - string DeviceId { get; } - /// - /// Gets the local images. - /// - /// IEnumerable<LocalFileInfo>. - Task> GetLocalPhotos(); - /// - /// Gets the local videos. - /// - /// IEnumerable<LocalFileInfo>. - Task> GetLocalVideos(); - /// - /// Uploads the file. - /// - /// The file. - /// The API client. - /// The cancellation token. - /// Task. - Task UploadFile(LocalFileInfo file, IApiClient apiClient, CancellationToken cancellationToken = default(CancellationToken)); - } -} -- cgit v1.2.3