12 lines
331 B
C#
12 lines
331 B
C#
namespace PatchProbe.Shared.Models;
|
|
|
|
public sealed class UpdateEvent
|
|
{
|
|
public long EventId { get; init; }
|
|
public string? Source { get; init; }
|
|
public string? LogName { get; init; }
|
|
public string? Level { get; init; }
|
|
public DateTimeOffset? TimeCreated { get; init; }
|
|
public string? Message { get; init; }
|
|
}
|