13 lines
233 B
C#
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);
|
|
}
|