Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Last active November 23, 2020 15:02
Embed
What would you like to do?
service.cs
public class ContextService : IContextReaderService, IContextWriterService
{
public string Username { get; set; }
}
public interface IContextReaderService
{
string Username { get; }
}
public interface IContextWriterService
{
string Username { set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment