10 lines
164 B
C#

namespace asg_form
{
public class JWTOptions
{
public string SigningKey { get; set; }
public int ExpireSeconds { get; set; }
}
}