Files
Moonlight/Moonlight/App/Models/Misc/Session.cs
Marcel Baumgartner a480b35fe6 Added session system
2023-03-06 18:36:00 +01:00

16 lines
504 B
C#

using Microsoft.AspNetCore.Components;
using Moonlight.App.Database.Entities;
using Moonlight.App.Services.Interop;
namespace Moonlight.App.Models.Misc;
public class Session
{
public string Ip { get; set; } = "N/A";
public string Url { get; set; } = "N/A";
public string Device { get; set; } = "N/A";
public User? User { get; set; }
public DateTime CreatedAt { get; set; }
public NavigationManager Navigation { get; set; }
public AlertService AlertService { get; set; }
}