using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using TIAMWebApp.Shared.Application.Models; namespace TIAMWebApp.Shared.Application.Interfaces { public interface ISessionService { public string? SessionId { get; set; } public UserSessionModel? User { get; set; } public IPAddress? IPAddress { get; set; } public bool IsAuthenticated { get; set; } } }