2024-08-21 16:50:14 +08:00

17 lines
506 B
C#

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; }
}
}