using System;
using System.Collections.Generic;
using System.Text;

namespace CoviDok.BLL
{
    public class Session
    {
        public string ID { get; set; }
        public string Type { get; set; }
        public DateTime LastAccess { get; set; }
    }
}