if(System.Diagnostics.Debugger.IsAttached){
serverUrl = "test";
}else{
serverUrl = "production";
};
public class Result
{
public bool error {get;set;}
public string error_text {get;set;}
public List<Users> content {get;set;}
}
List<Users> content = new();
return json(new {error = false, error_text = "", content = content});