2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 11:32:59 +00:00
2017-09-15 23:40:03 +03:00

24 lines
537 B
C#

using Esiur.Data;
using Esiur.Engine;
using Esiur.Net;
using Esiur.Resource;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Esiur.Security.Authority
{
public class Session
{
Authentication Authentication { get; }
Source Source { get; }
string Id { get; }
DateTime Creation { get; }
DateTime Modification { get; }
//KeyList<string, object> Variables { get; }
//IStore Store { get; }
}
}