Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created June 9, 2020 18:04
Embed
What would you like to do?
public interface ISingletonOperation : IOperation
{
}
public class SingletonOperation : ISingletonOperation
{
public Guid Id { get; }
public SingletonOperation()
{
Id = Guid.NewGuid();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment