Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created February 27, 2018 02:28
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 dcomartin/c7dcf4cbffd423695d92543b58b86f57 to your computer and use it in GitHub Desktop.
Save dcomartin/c7dcf4cbffd423695d92543b58b86f57 to your computer and use it in GitHub Desktop.
public class AlbumAddedToCart : INotification
{
public int AlbumId { get; }
public AlbumAddedToCart(int albumId)
{
AlbumId = albumId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment