mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
15f9370dbe
+ tests for UserSessionReader
11 lines
287 B
C#
11 lines
287 B
C#
namespace Govor.Contracts.DTOs;
|
|
|
|
public record SessionDto
|
|
{
|
|
public Guid Id { get; init; }
|
|
public string DeviceInfo { get; init; } = string.Empty;
|
|
public DateTime CreatedAt { get; init; }
|
|
public DateTime ExpiresAt { get; init; }
|
|
public bool IsRevoked { get; init; }
|
|
}
|