using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImWatchdog { public string ExeName { get; set; } = null!; public int TickCount { get; set; } public DateTime LastTime { get; set; } } }