Fixed WTSINFO.LastInputTime (#448)

nullableenabled
David Hall 2024-03-28 14:10:29 -06:00
parent d3793a106b
commit e17b7b67e8
1 changed files with 1 additions and 1 deletions

View File

@ -3080,7 +3080,7 @@ public static partial class WTSApi32
public long LastInputTimeUTC;
/// <summary>The time of the last user input in the session.</summary>
public DateTime LastInputTime => DateTime.FromFileTimeUtc(LogonTimeUTC);
public DateTime LastInputTime => DateTime.FromFileTimeUtc(LastInputTimeUTC);
/// <summary>The time that the user logged on to the session.</summary>
public long LogonTimeUTC;