aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Common/Models/Identity/TokenModel.cs
blob: 0fb6c828a3e6758f4ec621a42a06376f29e612ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace DevHive.Common.Models.Identity
{
	public class TokenModel
	{
		public TokenModel(string token)
		{
			this.Token = token;
		}

		public string Token { get; set; }
	}
}