mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
249 B
C#
12 lines
No EOL
249 B
C#
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
|
|
namespace Roadie.Library
|
|
{
|
|
[Serializable]
|
|
public class EventMessage
|
|
{
|
|
public LogLevel Level { get; set; } = LogLevel.Trace;
|
|
public string Message { get; set; }
|
|
}
|
|
} |