using CoviDok.Api; using System; using System.Collections.Generic; using System.Text; namespace CoviDok.BLL.Sessions { public class Session { public int ID { get; set; } public Role Type { get; set; } public DateTime LastAccess { get; set; } } }