TourIAm/TIAMMobileApp/Services/SessionServiceMobile.cs

15 lines
418 B
C#

using System.Net;
using TIAMWebApp.Shared.Application.Interfaces;
using TIAMWebApp.Shared.Application.Models;
namespace TIAMMobileApp.Services
{
public class SessionServiceMobile : ISessionService
{
public string? SessionId { get; set; }
public UserSessionModel? User { get; set; }
public IPAddress? IPAddress { get; set; }
public bool IsAuthenticated { get; set; }
}
}