Files
Yi.Framework/Yi.Framework.Net5/Yi.Framework.Common/Const/JwtConst.cs
2021-12-25 14:50:54 +08:00

13 lines
474 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Yi.Framework.Common.Const
{
public class JwtConst
{
public const string SecurityKey = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDI2a2EJ7m872v0afyoSDJT2o1+SitIeJSWtLJU8/Wz2m7gStexajkeD+Lka6DSTy8gt9UwfgVQo6uKjVLG5Ex7PiGOODVqAEghBuS7JzIYU5RvI543nNDAPfnJsas96mSA7L/mD7RTE2drj6hf3oZjJpMPZUQI/B1Qjb5H3K3PNwIDAQAB";
public const string Domain = "https://localhost:44329";
}
}