2025-07-08 14:01:10 +08:00

13 lines
306 B
C#

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