10 lines
188 B
C#
10 lines
188 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public record LogEntry(
|
|
int Id,
|
|
DateTime Timestamp,
|
|
string Level,
|
|
string Exception,
|
|
string RenderedMessage,
|
|
string Properties);
|