Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created June 10, 2020 15:49
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 NeelBhatt/5afca47cfff168ca27052bf599381a7b to your computer and use it in GitHub Desktop.
Save NeelBhatt/5afca47cfff168ca27052bf599381a7b to your computer and use it in GitHub Desktop.
public interface ITransientOperation : IOperation
{
}
public class TransientOperation : ITransientOperation
{
public Guid Id { get; }
public TransientOperation()
{
Id = Guid.NewGuid();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment