Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active March 31, 2018 09:22
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 NMZivkovic/6e37fcef3dfb057816ec51366ac66187 to your computer and use it in GitHub Desktop.
Save NMZivkovic/6e37fcef3dfb057816ec51366ac66187 to your computer and use it in GitHub Desktop.
public interface IBlogItem
{
void Expand();
}
public class Article : IBlogItem
{
public void Expand()
{
// Article expand implementation.
}
}
public class Series : IBlogItem
{
public void Expand()
{
// Series expand implementation.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment