Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 29, 2023 21:00
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 parzibyte/24ed4dfe0325169680f3cd6759bedd2f to your computer and use it in GitHub Desktop.
Save parzibyte/24ed4dfe0325169680f3cd6759bedd2f to your computer and use it in GitHub Desktop.
class OperacionPluginV3
{
public string nombre { get; set; }
public List<object> argumentos { get; set; }
public OperacionPluginV3(string nombre, List<object> argumentos)
{
this.nombre = nombre;
this.argumentos = argumentos;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment