blob: 1e54bbb9d0a7195fdbca79f63353ca380efe4a21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Tango.MachineService.Models
{
public class SessionVariables
{
public static String CurrentUserGuid => "CurrentUserGuid";
}
}
|