11 lines
189 B
C#
11 lines
189 B
C#
using System;
|
|
namespace Selector.MAUI
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string JwtPrefKey = "last_jwt_key";
|
|
public const string StartPagePrefKey = "start_page";
|
|
}
|
|
}
|
|
|