Skip to content

Instantly share code, notes, and snippets.

@HamidMosalla
Created December 5, 2017 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HamidMosalla/7d47faeddf80677e2e143262d6e45bb1 to your computer and use it in GitHub Desktop.
Save HamidMosalla/7d47faeddf80677e2e143262d6e45bb1 to your computer and use it in GitHub Desktop.
public static List<TestUser> GetUsers()
{
return new List<TestUser>
{
new TestUser
{
SubjectId = "1",
Username = "mosalla",
Password = "password",
Claims = new[]
{
new Claim("Employee", "Mosalla"),
new Claim("website", "https://hamidmosalla.com")
}
},
new TestUser
{
SubjectId = "2",
Username = "bob",
Password = "password",
Claims = new[]
{
new Claim("Employee", "Bob"),
new Claim("website", "https://bob.com")
}
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment