8 lines
121 B
C#
8 lines
121 B
C#
using System.IO;
|
|
|
|
namespace Services {
|
|
public interface IJwtServiceSettings {
|
|
string Secret { get; set; }
|
|
}
|
|
}
|