11 lines
244 B
C#
11 lines
244 B
C#
using NodaTime;
|
|
|
|
namespace DysonNetwork.Common.Models;
|
|
|
|
public class LastActiveInfo
|
|
{
|
|
public string SessionId { get; set; } = string.Empty;
|
|
public string AccountId { get; set; } = string.Empty;
|
|
public Instant SeenAt { get; set; }
|
|
}
|