// Copyright (c) Brock Allen & Dominick Baier. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using IdentityModel; using IdentityServer4.Test; using System.Collections.Generic; using System.Security.Claims; namespace IdentityServerHost.Quickstart.UI { public class TestUsers { public static List Users { get { return new List { new TestUser { SubjectId = "3199711031234", Username = "3199711031234", Password = "123", Claims = { new Claim(JwtClaimTypes.Name, "Muhammad Azeez"), new Claim(JwtClaimTypes.GivenName, "Muhammad"), new Claim(JwtClaimTypes.FamilyName, "Azeez"), new Claim(JwtClaimTypes.Email, "muhammad-azeez@outlook.com"), new Claim(JwtClaimTypes.EmailVerified, "true", ClaimValueTypes.Boolean), } } }; } } } }