I understand that I can use claims to make statements about a user:
var claims = new List(); claims.Add(new Claim(ClaimTypes.Name, \"Peter\"));
You can store roles using the ClaimType Role
claims.Add(new Claim(ClaimTypes.Role, "SuperAdmin"));