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/329f86bc496dc6437da4e3fc1aeb35e8 to your computer and use it in GitHub Desktop.
Save NeelBhatt/329f86bc496dc6437da4e3fc1aeb35e8 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