Files
ersatztv/ErsatzTV.Application/Logs/LogEntryViewModel.cs
T

13 lines
247 B
C#

using System;
namespace ErsatzTV.Application.Logs
{
public record LogEntryViewModel(
int Id,
DateTime Timestamp,
string Level,
string Exception,
string RenderedMessage,
string Properties);
}