13 lines
242 B
C#
13 lines
242 B
C#
|
using System;
|
||
|
|
||
|
namespace BlueWest.WebApi
|
||
|
{
|
||
|
internal static class SessionConstants
|
||
|
{
|
||
|
|
||
|
public static TimeSpan DefaultValidForSpan = TimeSpan.FromHours(24);
|
||
|
public const string ApiNamePolicy = "ApiUser";
|
||
|
}
|
||
|
}
|
||
|
|