Files
Artemy 15f9370dbe Created SessionController and UserSessionReader
+ tests for UserSessionReader
2025-07-24 17:03:51 +07:00

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