11 lines
238 B
C#
11 lines
238 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PlutoServer.MSL {
|
|
public static class SessionKeys {
|
|
public static readonly string AuthToken = "AUTH_TOKEN";
|
|
}
|
|
}
|