using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ReportServer.Models { public partial class Event { public Guid EventId { get; set; } public string EventType { get; set; } = null!; public string? EventData { get; set; } public DateTime TimeEntered { get; set; } public DateTime? ProcessStart { get; set; } public DateTime? ProcessHeartbeat { get; set; } public Guid? BatchId { get; set; } } }