SharpRSS/SharpRSS.API.Contracts/DTOs/Sessions/Session.cs

11 lines
250 B
C#
Raw Normal View History

2023-10-08 00:46:42 +02:00
using System;
namespace SharpRSS.API.Contracts.DTOs.Sessions
2023-10-08 00:46:42 +02:00
{
public class Session
{
public string Sid { get; set; } = string.Empty;
public DateTime Created { get; set; }
public DateTime Expires { get; set; }
}
}