Skip to content

Instantly share code, notes, and snippets.

@fmshk97
Created February 21, 2021 12:17
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 fmshk97/6a29daf105542f973ba03597f81e42e0 to your computer and use it in GitHub Desktop.
Save fmshk97/6a29daf105542f973ba03597f81e42e0 to your computer and use it in GitHub Desktop.
UserRepository.cs
namespace Authentication.Apis.Repositories
{
public class UserRepository
{
public static List<AppUser> UsersDb;
static UserRepository()
{
UsersDb = new List<AppUser>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment