aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Configs/TokenOptions.cs
blob: d8e968c74f3cfe78a66bc835ddd3589c929fb93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Timeline.Configs
{
    public class TokenOptions
    {
        /// <summary>
        /// The length of the generated secure random token counted in byte.
        /// Note the byte will be converted to hex form when used.
        /// Default is 32 byte long.
        /// </summary>
        public long? TokenLength { get; set; }
    }
}