// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.ClientEvent { using System.IO; using System.Threading.Tasks; /// /// The client event logger. /// public interface IClientEventLogger { /// /// Writes a file to the log directory. /// /// The client name writing the document. /// The client version writing the document. /// The file contents to write. /// The created file name. Task WriteDocumentAsync( string clientName, string clientVersion, Stream fileContents); } }