SharpRSS/SharpRSS.API.Contracts/DTOs/Sessions/Session.cs
2024-06-16 13:43:30 +02:00

11 lines
250 B
C#
Executable File

using System;
namespace SharpRSS.API.Contracts.DTOs.Sessions
{
public class Session
{
public string Sid { get; set; } = string.Empty;
public DateTime Created { get; set; }
public DateTime Expires { get; set; }
}
}