9 lines
184 B
C#
9 lines
184 B
C#
|
|
using CloudPrint.Client.Models;
|
||
|
|
|
||
|
|
namespace CloudPrint.Client.Services.Abstractions;
|
||
|
|
|
||
|
|
public interface IAppLogger
|
||
|
|
{
|
||
|
|
string LogDirectory { get; }
|
||
|
|
void Write(AppLogEntry entry);
|
||
|
|
}
|