Files
SethDiscordBot/PluginManager/Interfaces/Logger/ILog.cs
2023-11-21 22:04:38 +02:00

15 lines
252 B
C#

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