Files
SethDiscordBot/PluginManager/Interfaces/Logger/ILog.cs
2023-09-26 21:46:54 +03:00

16 lines
301 B
C#

using System;
using PluginManager.Others;
namespace PluginManager.Interfaces.Logger;
internal interface ILog
{
string Message { get; set; }
string OutputFile { get; set; }
Type? Source { get; set; }
LogType Type { get; set; }
DateTime ThrowTime { get; set; }
}