9 lines
222 B
C#
9 lines
222 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpChat.Sessions {
|
|||
|
public static class ISessionExtensions {
|
|||
|
public static TimeSpan GetIdleTime(this ISession session)
|
|||
|
=> session.LastPing - DateTimeOffset.Now;
|
|||
|
}
|
|||
|
}
|