Skip to content

Instantly share code, notes, and snippets.

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