9 lines
147 B
C#
9 lines
147 B
C#
using SimpleWiki.Models;
|
|
|
|
namespace SimpleWiki.Services;
|
|
|
|
public static class SessionService
|
|
{
|
|
public static User? CurrentUser { get; set; }
|
|
}
|