aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Options/JwtOptions.cs
blob: d973f45217094ab55b405f2c76a842c4917345c4 (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; }
	}
}