aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Options/JWTOptions.cs
blob: 95458f5f2b64d7bccbb9697dfc7f68792888925f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Microsoft.Extensions.Options;

namespace DevHive.Services.Options
{
	public class JWTOptions
	{
		public JWTOptions(string secret)
		{
			this.Secret = secret;
		}

		public string Secret { get; init; }
	}
}