Files
ersatztv/ErsatzTV.Core/Domain/LogEntry.cs
T

13 lines
233 B
C#

using System;
namespace ErsatzTV.Core.Domain
{
public record LogEntry(
int Id,
DateTime Timestamp,
string Level,
string Exception,
string RenderedMessage,
string Properties);
}