mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
11 lines
250 B
C#
Executable File
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; }
|
|
}
|
|
} |