Skip to content

Instantly share code, notes, and snippets.

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